summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author0xr3ngar <bogdan.nikolov4@outlook.com>2026-02-10 09:24:33 +0100
committer0xr3ngar <bogdan.nikolov4@outlook.com>2026-02-10 09:24:33 +0100
commitc2dc3119d69ae01dc71c146f0ba239b07366adf5 (patch)
tree76602e7807dda2519feb392f154c5c7c3f9c5df5
parent7fdf0076fc8a5f4bb30ab2cb5d2d39af4df43f64 (diff)
downloada4-c2dc3119d69ae01dc71c146f0ba239b07366adf5.tar.xz
a4-c2dc3119d69ae01dc71c146f0ba239b07366adf5.zip
docs: add telescope provider selector example in docs
-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)