diff options
author | Matthieu Coudron <mattator@gmail.com> | 2020-04-27 13:53:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 13:53:41 +0200 |
commit | d90a92bcd3c18111abb62a57192c9e151839a7f4 (patch) | |
tree | e9b9163c0896aa099f7c543c76197d28dbfdc5d3 /src/nvim/normal.c | |
parent | fc98f2d5815d8f7e671766db255edbb7365960b1 (diff) | |
parent | fcd9ce39012c9328b999c4ccb7eaa7c22766168e (diff) | |
download | rneovim-d90a92bcd3c18111abb62a57192c9e151839a7f4.tar.gz rneovim-d90a92bcd3c18111abb62a57192c9e151839a7f4.tar.bz2 rneovim-d90a92bcd3c18111abb62a57192c9e151839a7f4.zip |
Merge pull request #12018 from janlazo/vim-8.0.1123
[RFC]vim-patch:8.0.{1123,1125,1138,1139,1142,1292,1334,1375},8.1.1264
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index fbd941c5fe..87d687198d 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -2561,7 +2561,14 @@ do_mouse ( * JUMP! */ jump_flags = jump_to_mouse(jump_flags, - oap == NULL ? NULL : &(oap->inclusive), which_button); + oap == NULL ? NULL : &(oap->inclusive), + which_button); + + // A click in the window toolbar has no side effects. + if (jump_flags & MOUSE_WINBAR) { + return false; + } + moved = (jump_flags & CURSOR_MOVED); in_status_line = (jump_flags & IN_STATUS_LINE); in_sep_line = (jump_flags & IN_SEP_LINE); |