diff options
| author | 2026-04-17 10:52:59 +0100 | |
|---|---|---|
| committer | 2026-04-17 10:52:59 +0100 | |
| commit | 0e1ebe25c32be65ffad77b694b31d44f00850881 (patch) | |
| tree | af39d4f64907117737c0a1bb2ff084baa9244c93 /home | |
| parent | 8fa5766edd89c488c41dde3d28fac2f8b7f3b719 (diff) | |
| download | dotfiles-0e1ebe25c32be65ffad77b694b31d44f00850881.tar.gz dotfiles-0e1ebe25c32be65ffad77b694b31d44f00850881.tar.bz2 dotfiles-0e1ebe25c32be65ffad77b694b31d44f00850881.zip | |
fix(nvim): remove incorrect expr flag from terminal escape mapping
The mapping has a literal rhs string, not an expression. The expr
flag caused the rhs to be evaluated as a vimscript expression.
Diffstat (limited to 'home')
| -rw-r--r-- | home/.config/nvim/after/plugin/mappings.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/.config/nvim/after/plugin/mappings.lua b/home/.config/nvim/after/plugin/mappings.lua index 9eeaf19..f583647 100644 --- a/home/.config/nvim/after/plugin/mappings.lua +++ b/home/.config/nvim/after/plugin/mappings.lua @@ -64,7 +64,7 @@ vim.keymap.set( "t", "<esc><esc>", "<c-\\><c-n>", - { silent = true, noremap = true, expr = true, desc = "Exit terminal mode" } + { silent = true, noremap = true, desc = "Exit terminal mode" } ) nmap("[w", function() |
