aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 18640b81..5e3508f0 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -175,7 +175,7 @@ set splitright " Right of the current window, not left
" No terminal mouse, even if we could
" The manual says to set 't_RV', but I don't like that
-if &ttymouse !=# ''
+if exists('+ttymouse') && &ttymouse !=# ''
set ttymouse=
endif