From 70c4aacffd14c63d696bc4ead4266faebfc31819 Mon Sep 17 00:00:00 2001 From: Zach Zolton Date: Mon, 30 Sep 2024 19:07:28 -0400 Subject: [PATCH] Remove redundant and outdated which-key spec --- init.lua | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/init.lua b/init.lua index 27cc4922..9c8f3b67 100644 --- a/init.lua +++ b/init.lua @@ -1171,17 +1171,6 @@ local on_attach = function(_, bufnr) end, { desc = 'Format current buffer with LSP' }) end --- document existing key chains -require('which-key').register { - ['c'] = { name = '[C]ode', _ = 'which_key_ignore' }, - ['d'] = { name = '[D]ocument', _ = 'which_key_ignore' }, - ['g'] = { name = '[G]it', _ = 'which_key_ignore' }, - ['h'] = { name = 'More git', _ = 'which_key_ignore' }, - ['r'] = { name = '[R]ename', _ = 'which_key_ignore' }, - ['s'] = { name = '[S]earch', _ = 'which_key_ignore' }, - ['w'] = { name = '[W]orkspace', _ = 'which_key_ignore' }, -} - -- mason-lspconfig requires that these setup functions are called in this order -- before setting up the servers. require('mason').setup()