I added the following line to my .screenrc
script such that I can use my mouse to scroll up and down in the terminal when the output is too large and long. However, when I try to
source .screenrc
script. It complains that termcapinfo command not found
.
termcapinfo xterm ti@:te@
I have no idea what went wrong ? Why is this happening ?
termcapinfo xterm ti@:te@
. But I wasn't able to scroll up to see all the output . Why is this ? – mynameisJEFF Sep 03 '14 at 17:21echo $TERM
will be usefull. – jimmij Sep 03 '14 at 17:36echo $TERM
givesxterm-256color
. – mynameisJEFF Sep 03 '14 at 18:00termcapinfo xterm-256color ti@:te@
instead or even bettertermcapinfo xterm*|rxvt*|kterm*|Eterm*|screen* ti@:te@
– jimmij Sep 03 '14 at 18:09screen
is to use keyboard shortcutC-a ESC
and then use up-down arrows. Try it, maybe this is what you are looking for? – jimmij Sep 03 '14 at 18:48