Shougo
Shougo
Hm... The locality calc is slow if it is too long line.
> @Shougo @zeertzjq was it intended to design like that? > It already triggers CmdlineChanged, and when the cmdline text changes the definition of "cursor movement" is not clear. Yes....
> if yes, then the event name maybe should be called `CmdLineCursorMoved` The event was named `CmdlineMoved`. It is renamed to `CursorMovedC` to adjust other event naming. I don't think...
No problem.
I use the config for the feature. ```vim " Better for deletion autocmd CmdlineEnter * \ : let s:save_iskeyword = &l:iskeyword \ | setlocal iskeyword+=. \ | setlocal iskeyword-=/ \...
``` FAILED: touches/lintc-uncrustify/src-nvim-getchar-c /home/runner/work/neovim/neovim/build/touches/lintc-uncrustify/src-nvim-getchar-c cd /home/runner/work/neovim/neovim && /usr/local/bin/cmake -E touch /home/runner/work/neovim/neovim/build/touches/lintc-uncrustify/src-nvim-getchar-c && /home/runner/work/neovim/neovim/build/usr/bin/uncrustify -c /home/runner/work/neovim/neovim/src/uncrustify.cfg -q --check /home/runner/work/neovim/neovim/src/nvim/getchar.c FAIL: /home/runner/work/neovim/neovim/src/nvim/getchar.c (File size changed from 99025 to 99027) ``` ~~I don't...
I have added https://github.com/vim/vim/commit/890f97ce57ed90d55a87ff1b88914922cda8f016 commit.
All tests are passed.
OK. `on_key` is good feature in neovim. But it cannot change key behavior like `v:char` in `KeyInputPre`. I heard about this problem from hrsh7th, the author of nvim-cmp. So I...
Current `KeyInputPre` event problem: The timing of updating `typedchar` is not intuitive. It is updated when previous `KeyInputPre` until current `KeyInputPre`. Can you fix it?