Fix tty mouse not working after column 222
This commit is contained in:
parent
a84de5792d
commit
7f88c72e3b
1 changed files with 6 additions and 0 deletions
6
vimrc
6
vimrc
|
@ -188,6 +188,12 @@ endif
|
||||||
"[Use the mouse in terminal]"
|
"[Use the mouse in terminal]"
|
||||||
set mouse=a
|
set mouse=a
|
||||||
set mousemodel=extend
|
set mousemodel=extend
|
||||||
|
"[Fix mouse past column 222]"
|
||||||
|
if has("mouse_sgr")
|
||||||
|
set ttymouse=sgr
|
||||||
|
else
|
||||||
|
set ttymouse=xterm2
|
||||||
|
end
|
||||||
"[Hide mouse while printing the text]"
|
"[Hide mouse while printing the text]"
|
||||||
set mousehide
|
set mousehide
|
||||||
"[Visualisation settings]"
|
"[Visualisation settings]"
|
||||||
|
|
Loading…
Reference in a new issue