aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_getln.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-05 23:09:02 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-06 00:19:10 -0400
commit51403d6d411ca9bc8b4e8d66003a52781e5c698e (patch)
treeb0ab6a9dc5942cb89b45a80a8b7a2694e2c0ba1b /src/nvim/ex_getln.c
parent4910ac9ab8984551391df78dbf2744e6b4f5ef67 (diff)
downloadrneovim-51403d6d411ca9bc8b4e8d66003a52781e5c698e.tar.gz
rneovim-51403d6d411ca9bc8b4e8d66003a52781e5c698e.tar.bz2
rneovim-51403d6d411ca9bc8b4e8d66003a52781e5c698e.zip
vim-patch:8.0.1309: cannot use 'balloonexpr' in a terminal
Problem: Cannot use 'balloonexpr' in a terminal. Solution: Add 'balloonevalterm' and add code to handle mouse movements in a terminal. Initial implementation for Unix with GUI. https://github.com/vim/vim/commit/51b0f3701ecb440aa72ab6017c1df6940c0e0f6f
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r--src/nvim/ex_getln.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index 7159b27665..53571ec8da 100644
--- a/src/nvim/ex_getln.c
+++ b/src/nvim/ex_getln.c
@@ -1953,6 +1953,7 @@ static int command_line_handle_key(CommandLineState *s)
case K_X2MOUSE:
case K_X2DRAG:
case K_X2RELEASE:
+ case K_MOUSEMOVE:
return command_line_not_changed(s);