diff --git a/lua/lazyvim/config/keymaps.lua b/lua/lazyvim/config/keymaps.lua index 7188e99a..2fe86af7 100644 --- a/lua/lazyvim/config/keymaps.lua +++ b/lua/lazyvim/config/keymaps.lua @@ -130,6 +130,7 @@ local lazyterm = function() Util.float_term(nil, { cwd = Util.get_root() }) end map("n", "ft", lazyterm, { desc = "Terminal (root dir)" }) map("n", "fT", function() Util.float_term() end, { desc = "Terminal (cwd)" }) map("n", "", lazyterm, { desc = "Terminal (root dir)" }) +map("n", "", "", { remap = true, desc = "which_key_ignore" }) -- Terminal Mappings map("t", "", "", { desc = "Enter Normal Mode" }) @@ -138,6 +139,7 @@ map("t", "", "wincmd j", { desc = "Go to lower window"}) map("t", "", "wincmd k", { desc = "Go to upper window"}) map("t", "", "wincmd l", { desc = "Go to right window"}) map("t", '', "close", {desc = "Hide Terminal"}) +map("t", "", "", { remap = true, desc = "which_key_ignore" }) -- windows map("n", "ww", "p", { desc = "Other window", remap = true })