summaryrefslogtreecommitdiff
path: root/lua/core/which-key.lua
diff options
context:
space:
mode:
authorAbouzar Parvan <[email protected]>2021-08-11 12:03:58 +0430
committerGitHub <[email protected]>2021-08-11 12:03:58 +0430
commit47915dd33ef3ed4cc662c5f68b16d68f4f230ec2 (patch)
treeab6b9d01230a735f5b4e684bd309644117b335a5 /lua/core/which-key.lua
parentcbbaf010f6d872187e08473350ae0ad43d8cad84 (diff)
`<CMD>` mapping must end with `<CR>`
Diffstat (limited to 'lua/core/which-key.lua')
-rw-r--r--lua/core/which-key.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/which-key.lua b/lua/core/which-key.lua
index d75b2c70..96f3a8f7 100644
--- a/lua/core/which-key.lua
+++ b/lua/core/which-key.lua
@@ -68,7 +68,7 @@ M.config = function()
["c"] = { "<cmd>BufferClose!<CR>", "Close Buffer" },
["e"] = { "<cmd>lua require'core.nvimtree'.toggle_tree()<CR>", "Explorer" },
["f"] = { "<cmd>Telescope find_files<CR>", "Find File" },
- ["h"] = { "<cmd>nohlsearch", "No Highlight" },
+ ["h"] = { "<cmd>nohlsearch<CR>", "No Highlight" },
b = {
name = "Buffers",
j = { "<cmd>BufferPick<cr>", "jump to buffer" },