From 683627659e31dd0ae1d627653a988feee0d63190 Mon Sep 17 00:00:00 2001 From: dlond Date: Fri, 30 May 2025 00:58:41 +1200 Subject: [PATCH] typo --- lua/custom/plugins/lsp/clangd.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/plugins/lsp/clangd.lua b/lua/custom/plugins/lsp/clangd.lua index 198d0f41..2767eae1 100644 --- a/lua/custom/plugins/lsp/clangd.lua +++ b/lua/custom/plugins/lsp/clangd.lua @@ -96,6 +96,6 @@ return { M.watch_compile_commands() end - vim.keymap.set('n', 'cc', pick_commands_dir, { desc = 'Pick location of compile_commands.json for clangd' }) + vim.keymap.set('n', 'cc', M.pick_commands_dir, { desc = 'Pick location of compile_commands.json for clangd' }) end, }