diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-06 09:34:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-06 09:34:29 +0800 |
commit | e8661133c533345e8d83a38b077e45922988fa90 (patch) | |
tree | 05f32f244118b65f6a2ba3b99abc4e68476148b4 /src/nvim/message.c | |
parent | b99f13385cfd15e161b18f103a5e36469f49431f (diff) | |
download | rneovim-e8661133c533345e8d83a38b077e45922988fa90.tar.gz rneovim-e8661133c533345e8d83a38b077e45922988fa90.tar.bz2 rneovim-e8661133c533345e8d83a38b077e45922988fa90.zip |
vim-patch:9.0.0904: various comment and indent flaws (#23498)
Problem: Various comment and indent flaws.
Solution: Improve comments and indenting.
https://github.com/vim/vim/commit/88456cd3c49a3dd1fda17cf350daa9b8216b1aa6
Omit test_function_lists.vim change as that file is likely not
applicable to Nvim due to the existence of Nvim-only functions.
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r-- | src/nvim/message.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index e8e2d57e41..63bcf3e069 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -1250,6 +1250,7 @@ void wait_return(int redraw) || c == K_MOUSEDOWN || c == K_MOUSEUP || c == K_MOUSEMOVE); os_breakcheck(); + // Avoid that the mouse-up event causes visual mode to start. if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE || c == K_X1MOUSE || c == K_X2MOUSE) { |