Extend selection instead of showing the right click menu in neovim

This commit is contained in:
Kevin MacMartin 2022-10-03 17:52:18 -04:00
parent 752657a7f5
commit b6d76f6083

View file

@ -34,8 +34,11 @@
endif
endif
"fancy mouse reporting with xterm2 fallback
if !has('nvim')
if has('nvim')
"extend selection instead of showing the right click menu in neovim
set mousemodel=extend
else
"fancy mouse in vim reporting with xterm2 fallback
if has("mouse_sgr")
set ttymouse=sgr
else