Sam

Results 66 comments of Sam

How did it break ? What happens ?

Oh the plugin maps "

We could fix it by simply removing the multiple keys layout(https://github.com/max397574/better-escape.nvim/pull/113/commits/13306ef3f62f523fb6adb91ad676b6c7495797a8) or dirty fix it by translating the key to escape codes then checking if the string changes. If https://github.com/neovim/neovim/issues/26575...

Both issues should be fixed now. But there's still a bug where the plugin overdeletes if you map multiple special characters: ```lua i = { [""] = { [""] =...

> perhaps we should just mention this somewhere in the readme I was gonna do that. I wanted to discuss it first in case you had a solution or if...

You could use `t_CTRL-\_CTRL-O` ```lua local t_wincmd = '' vim.keymap.set({'i', 't'} , '', t_wincmd .. 'h') vim.keymap.set({'i', 't'} , '', t_wincmd .. 'j') vim.keymap.set({'i', 't'} , '', t_wincmd .. 'k')...