summaryrefslogtreecommitdiff
path: root/lua/lvim/core/terminal.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-12-11 21:19:20 +0100
committerGitHub <[email protected]>2021-12-11 21:19:20 +0100
commit53bb4effbc645ed75fc13f38b4e4f58db8d4ebe1 (patch)
tree630f5787b67897d00562d70dbfa22ec43e064273 /lua/lvim/core/terminal.lua
parentf7d883b6b92d66c222fd0d4e3d398c1f4fcea882 (diff)
chore(terminal): avoid problematic layzgit mapping (#2068)
Diffstat (limited to 'lua/lvim/core/terminal.lua')
-rw-r--r--lua/lvim/core/terminal.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/lvim/core/terminal.lua b/lua/lvim/core/terminal.lua
index 7eb343ce..c5d1ea04 100644
--- a/lua/lvim/core/terminal.lua
+++ b/lua/lvim/core/terminal.lua
@@ -40,9 +40,8 @@ M.config = function()
-- lvim.builtin.terminal.execs = {{}} to overwrite
-- lvim.builtin.terminal.execs[#lvim.builtin.terminal.execs+1] = {"gdb", "tg", "GNU Debugger"}
execs = {
- -- TODO: this should probably be removed since it's hard to hit <leader>gg within the timeoutlen
{ "lazygit", "<leader>gg", "LazyGit", "float" },
- { "lazygit", "<c-\\>", "LazyGit", "float" },
+ { "lazygit", "<c-\\><c-g>", "LazyGit", "float" },
},
}
end