diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-10-20 21:09:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-10-20 21:09:35 +0200 |
commit | c842748302d33bcf41c6b796a43d9dbbf44cdc29 (patch) | |
tree | d16038ab394271bfe0e2765cdec768746d767378 /src/option.h | |
parent | 62dbdc4a5ae16900d17473dbfe3be3acea321bf0 (diff) | |
download | vim-git-c842748302d33bcf41c6b796a43d9dbbf44cdc29.tar.gz |
updated for version 7.3.343v7.3.343
Problem: No mouse support for urxvt.
Solution: Implement urxvt mouse support, also for > 252 columns. (Yiding
Jia)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h index 1d4d950d1..21c275342 100644 --- a/src/option.h +++ b/src/option.h @@ -819,7 +819,7 @@ EXTERN long p_ttyscroll; /* 'ttyscroll' */ EXTERN char_u *p_ttym; /* 'ttymouse' */ EXTERN unsigned ttym_flags; # ifdef IN_OPTION_C -static char *(p_ttym_values[]) = {"xterm", "xterm2", "dec", "netterm", "jsbterm", "pterm", NULL}; +static char *(p_ttym_values[]) = {"xterm", "xterm2", "dec", "netterm", "jsbterm", "pterm", "urxvt", NULL}; # endif # define TTYM_XTERM 0x01 # define TTYM_XTERM2 0x02 @@ -827,6 +827,7 @@ static char *(p_ttym_values[]) = {"xterm", "xterm2", "dec", "netterm", "jsbterm" # define TTYM_NETTERM 0x08 # define TTYM_JSBTERM 0x10 # define TTYM_PTERM 0x20 +# define TTYM_URXVT 0x40 #endif EXTERN char_u *p_udir; /* 'undodir' */ EXTERN long p_ul; /* 'undolevels' */ |