aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-26 18:08:35 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-26 18:08:35 +1300
commit24761da02819234a841054c1eec052de185ca9c4 (patch)
tree69b4384831ae3ec0267d57ee386984a798702b6a
parentNo longer need a longer 'timeoutlen' in Vim (diff)
downloaddotfiles-24761da02819234a841054c1eec052de185ca9c4.tar.gz
dotfiles-24761da02819234a841054c1eec052de185ca9c4.zip
Force 'ttymouse' off a little more carefully
-rw-r--r--vim/vimrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index a63871f6..6c16f033 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -190,7 +190,8 @@ set splitbelow " Below the current window, not above
set splitright " Right of the current window, not left
" No terminal mouse, even if we could
-if exists('+ttymouse')
+" The manual says to set 't_RV', but I don't like that
+if exists('+ttymouse') && &ttymouse !=# ''
set ttymouse=
endif