diff options
author | kylo252 <[email protected]> | 2021-12-11 21:19:53 +0100 |
---|---|---|
committer | kylo252 <[email protected]> | 2021-12-11 21:19:53 +0100 |
commit | b1a9384f6ebadadbc38ac2e372249d4cb2cf03c9 (patch) | |
tree | 9b12f774abad9b0ada7af8ebfe948058ba21f32f | |
parent | 162ed3417244e2e9a46c3d09e3dbe52392cf31ba (diff) | |
parent | 53bb4effbc645ed75fc13f38b4e4f58db8d4ebe1 (diff) |
Merge remote-tracking branch 'origin/rolling' into release-candidate
-rw-r--r-- | lua/lvim/core/terminal.lua | 3 |
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 |