diff options
| author | 0xr3ngar <bogdan.nikolov4@outlook.com> | 2026-02-10 09:24:33 +0100 |
|---|---|---|
| committer | 0xr3ngar <bogdan.nikolov4@outlook.com> | 2026-02-10 09:24:33 +0100 |
| commit | c2dc3119d69ae01dc71c146f0ba239b07366adf5 (patch) | |
| tree | 76602e7807dda2519feb392f154c5c7c3f9c5df5 | |
| parent | 7fdf0076fc8a5f4bb30ab2cb5d2d39af4df43f64 (diff) | |
| download | a4-c2dc3119d69ae01dc71c146f0ba239b07366adf5.tar.xz a4-c2dc3119d69ae01dc71c146f0ba239b07366adf5.zip | |
docs: add telescope provider selector example in docs
| -rw-r--r-- | README.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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) |
