summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index feea681..d076959 100644
--- a/README.md
+++ b/README.md
@@ -157,6 +157,16 @@ end)
The selected model is used for all subsequent requests in the current session.
+### Telescope Provider Selector
+
+Switch between providers (OpenCode, Claude, Cursor, Kiro) without restarting Neovim. Switching provider also resets the model to that provider's default.
+
+```lua
+vim.keymap.set("n", "<leader>9p", function()
+ require("99.extensions.telescope").select_provider()
+end)
+```
+
## API
You can see the full api at [99 API](./lua/99/init.lua)