From f22b24fddcfef913f1a186e686114ad0bf6d27cd Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sat, 14 Jan 2023 01:01:26 +0000 Subject: [PATCH] vim: don't set ttymouse in nvim --- vim/vimrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index d5b0610..9d85de2 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -224,7 +224,9 @@ set ttyfast " using the mouse {{{2 set mouse=rnv " list of flags for using the mouse -set ttymouse=xterm " type of mouse +if !has('nvim') + set ttymouse=xterm " type of mouse +endif " messages and info {{{2 set showcmd " Show (partial) command in status line. -- 2.48.1