aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
authorScott Prager <splinterofchaos@gmail.com>2014-09-09 13:13:23 -0400
committerScott Prager <splinterofchaos@gmail.com>2014-09-19 20:23:06 -0400
commit83cd2979a10bdab903e4f3f0f5bb0c85573522b6 (patch)
treeb096fdb5dfbb018462cd4be4212cf9ac92f22c02 /src/nvim/globals.h
parentdc6db20febf1ce1848e87f8950c48a78aaffd8f6 (diff)
downloadrneovim-83cd2979a10bdab903e4f3f0f5bb0c85573522b6.tar.gz
rneovim-83cd2979a10bdab903e4f3f0f5bb0c85573522b6.tar.bz2
rneovim-83cd2979a10bdab903e4f3f0f5bb0c85573522b6.zip
vim-patch:7.4.305
Problem: Making 'ttymouse' empty after the xterm version was requested causes problems. (Elijah Griffin) Solution: Do not check for DEC mouse sequences when the xterm version was requested. Also don't request the xterm version when DEC mouse was enabled. https://code.google.com/p/vim/source/detail?r=v7-4-305
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 674786ff08..851022cd62 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -1059,6 +1059,10 @@ EXTERN int typebuf_was_filled INIT(= FALSE); /* received text from client
EXTERN int term_is_xterm INIT(= FALSE); /* xterm-like 'term' */
#endif
+#if defined(UNIX)
+EXTERN int xterm_conflict_mouse INIT(= FALSE);
+#endif
+
#ifdef BACKSLASH_IN_FILENAME
EXTERN char psepc INIT(= '\\'); /* normal path separator character */
EXTERN char psepcN INIT(= '/'); /* abnormal path separator character */