No mouse in Vim inside nested screen sessions
For many reasons, I often work with nested GNU Screen sessions . But Vim running on a nested screen instance doesn't seem to be catching mouse information. I've tried :set mouse=a
and :set ttymouse=xterm2
, the tricks that Vim usually get to recognize the mouse to no avail. Any pointers? Or ... cursors? Help me please!
+3
Jay straw
source
to share
1 answer
Mouse is not supported in screen
. You can try tmux
with these conf:
set -g mouse-resize-pane on
set -g mouse-select-pane on
set -g mouse-select-window on
+1
kev
source
to share