mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Extend selection instead of showing the right click menu in neovim
This commit is contained in:
parent
752657a7f5
commit
b6d76f6083
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue