diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2014-09-09 14:44:10 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2014-09-19 20:23:06 -0400 |
commit | 3253e7ec09e8c26c31ad5d2172fd664864012f38 (patch) | |
tree | ce906ba95f258c9c40062bf34276f6615a4137f4 /src/nvim/os_unix.c | |
parent | 83cd2979a10bdab903e4f3f0f5bb0c85573522b6 (diff) | |
download | rneovim-3253e7ec09e8c26c31ad5d2172fd664864012f38.tar.gz rneovim-3253e7ec09e8c26c31ad5d2172fd664864012f38.tar.bz2 rneovim-3253e7ec09e8c26c31ad5d2172fd664864012f38.zip |
vim-patch:7.4.359
Problem: When 'ttymouse' is set to 'uxterm' the xterm version is not
requested. (Tomas Janousek)
Solution: Do not mark uxterm as a conflict mouse and add
resume_get_esc_sequence().
https://code.google.com/p/vim/source/detail?r=v7-4-359
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 23dc79b896..52f57f8262 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -810,7 +810,7 @@ void check_mouse_termcode(void) mch_setmouse(false); setmouse(); } - xterm_conflict_mouse = true; + resume_get_esc_sequence(); } else { del_mouse_termcode(KS_URXVT_MOUSE); } |