From 670450dccb249cc8d12c30826c3442369403cf87 Mon Sep 17 00:00:00 2001 From: ray Date: Fri, 12 Dec 2025 01:09:02 +0000 Subject: [PATCH] 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. --- lua/plugins/telescope.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index 1cc81d2..997a60c 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -101,6 +101,9 @@ return { { 'fk', 'Telescope keymaps', desc = 'Telescope: Find keymaps' }, { '?', 'Telescope keymaps', desc = 'Telescope: Find keymaps' }, + -- Search commands + { 'fc', 'Telescope commands', desc = 'Telescope: Find commands' }, + -- LSP-related pickers (optional, for when LSP is active) { 'fs', 'Telescope lsp_document_symbols', desc = 'Telescope: Document symbols' }, { 'fS', 'Telescope lsp_dynamic_workspace_symbols', desc = 'Telescope: Workspace symbols' },