summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authoropalmay <[email protected]>2023-03-06 19:49:26 +0200
committeropalmay <[email protected]>2023-04-12 13:56:59 +0300
commitec79c00db9adcba1ccab1a5263f0e24d2ce0dd8e (patch)
tree49d4c550e6da63e35fd12f632ac2064e7d5d9e91 /lua
parent5f54ff772039183800eb40bf3efd6d2893fb1033 (diff)
refactor: don't set `noremap` in bind
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to 'lua')
-rw-r--r--lua/lvim/core/terminal.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/terminal.lua b/lua/lvim/core/terminal.lua
index c7408bf2..5e704428 100644
--- a/lua/lvim/core/terminal.lua
+++ b/lua/lvim/core/terminal.lua
@@ -97,7 +97,7 @@ local function add_term_keymap(term_opts)
end
vim.keymap.set(modes, term_opts.keymap, function()
term_toggle(term_opts)
- end, { desc = term_opts.desc, noremap = true, silent = true })
+ end, { desc = term_opts.desc, silent = true })
end
--- Setup the terminal cmds