Add command search functionality to Telescope keymaps

This update introduces a new key mapping for searching commands
within Telescope, enhancing the usability of the fuzzy finder.
This commit is contained in:
Ray Elliott 2025-12-12 01:09:02 +00:00
parent f4f6260b20
commit 670450dccb
1 changed files with 3 additions and 0 deletions

View File

@ -101,6 +101,9 @@ return {
{ '<leader>fk', '<cmd>Telescope keymaps<cr>', desc = 'Telescope: Find keymaps' },
{ '<leader>?', '<cmd>Telescope keymaps<cr>', desc = 'Telescope: Find keymaps' },
-- Search commands
{ '<leader>fc', '<cmd>Telescope commands<cr>', desc = 'Telescope: Find commands' },
-- LSP-related pickers (optional, for when LSP is active)
{ '<leader>fs', '<cmd>Telescope lsp_document_symbols<cr>', desc = 'Telescope: Document symbols' },
{ '<leader>fS', '<cmd>Telescope lsp_dynamic_workspace_symbols<cr>', desc = 'Telescope: Workspace symbols' },