aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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