1
0
forked from aniani/vim

patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible

Problem:    GUI: mouse move may start Visual mode with a popup visible.
Solution:   Add special code for mouse move. (closes #8318)
This commit is contained in:
Bram Moolenaar
2021-06-08 20:13:31 +02:00
parent dc73b4b75d
commit 445f11d5bc
5 changed files with 15 additions and 3 deletions

View File

@@ -273,8 +273,9 @@ enum key_extra
, KE_FOCUSGAINED = 98 // focus gained
, KE_FOCUSLOST = 99 // focus lost
, KE_MOUSEMOVE = 100 // mouse moved with no button down
, KE_CANCEL = 101 // return from vgetc()
, KE_COMMAND = 102 // <Cmd> special key
, KE_MOUSEMOVE_XY = 101 // KE_MOUSEMOVE with coordinates
, KE_CANCEL = 102 // return from vgetc()
, KE_COMMAND = 103 // <Cmd> special key
};
/*