diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2012-02-05 17:25:05 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2012-02-05 17:25:05 +0000 |
commit | 359d940358dec836dd0acfe9d9caf0b1ff0a97fe (patch) | |
tree | eeed5f77c8417a98fe5b8538d3c019d1cea00c04 /extra/vim | |
parent | cdc66cc7110e78bf1197f9effc70422114f9341b (diff) |
Sun Feb 5 17:25:01 UTC 2012
Diffstat (limited to 'extra/vim')
-rw-r--r-- | extra/vim/urxvt-mouse.diff | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/extra/vim/urxvt-mouse.diff b/extra/vim/urxvt-mouse.diff deleted file mode 100644 index 9112e7ffd..000000000 --- a/extra/vim/urxvt-mouse.diff +++ /dev/null @@ -1,35 +0,0 @@ -diff --git a/src/term.c b/src/term.c ---- a/src/term.c -+++ b/src/term.c -@@ -1996,6 +1996,7 @@ - # define HMT_DEC 4 - # define HMT_JSBTERM 8 - # define HMT_PTERM 16 -+# define HMT_URXVT 32 - static int has_mouse_termcode = 0; - # endif - -@@ -2031,6 +2032,11 @@ - has_mouse_termcode |= HMT_PTERM; - else - # endif -+# ifdef FEAT_MOUSE_URXVT -+ if (n == KS_URXVT_MOUSE) -+ has_mouse_termcode |= HMT_URXVT; -+ else -+# endif - has_mouse_termcode |= HMT_NORMAL; - # endif - } -@@ -2068,6 +2074,11 @@ - has_mouse_termcode &= ~HMT_PTERM; - else - # endif -+# ifdef FEAT_MOUSE_URXVT -+ if (n == KS_URXVT_MOUSE) -+ has_mouse_termcode &= ~HMT_URXVT; -+ else -+# endif - has_mouse_termcode &= ~HMT_NORMAL; - # endif - } |