From ef3f25fd1d496c3822af9536d224270c48f12fff Mon Sep 17 00:00:00 2001 From: Christian Chiarulli Date: Sat, 20 May 2023 07:58:53 -0400 Subject: [PATCH] feat: ignore missing keys for whichkey (#4185) --- lua/lvim/core/which-key.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index 2ab47b05..7d442a2b 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -56,7 +56,7 @@ M.config = function() spacing = 3, -- spacing between columns align = "left", -- align columns left, center or right }, - ignore_missing = false, -- enable this to hide mappings for which you didn't specify a label + ignore_missing = true, -- enable this to hide mappings for which you didn't specify a label hidden = { "", "", "", "", "call", "lua", "^:", "^ " }, -- hide mapping boilerplate show_help = true, -- show help message on the command line when the popup is visible show_keys = true, -- show the currently pressed key and its label as a message in the command line