-
Does scroll work on mosh? How do I add scroll to Mosh? Does Mosh have the scroll feature? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Mosh does not support scroll, due to it only dumping changes between screens, like video rendering protocols. This is the reason why Mosh is so fast. How can I add scroll to Mosh? Since Mosh cannot scroll we recommend pairing it with a terminal multiplexer like
How to scroll in
As an extra tip, you can auto launch your Mosh’s limitations; read more. |
Beta Was this translation helpful? Give feedback.
-
I tried this but it doesn't work well with the finger scroll because blink translates touch to arrows in mosh, instead of mouse wheel. blink uses scroll in bink shell and in ssh, if you do the same for mosh it would work with tmux mouse mode. I guess you decided on arrows in mosh because mosh does not have an history buffer and this is a good decision if tmux mouse mode did not exist |
Beta Was this translation helpful? Give feedback.
Mosh does not support scroll, due to it only dumping changes between screens, like video rendering protocols. This is the reason why Mosh is so fast. How can I add scroll to Mosh? Since Mosh cannot scroll we recommend pairing it with a terminal multiplexer like
Tmux
orScreen
. These allow buffering for scrolling and you have access to your previous command outputs.How to scroll on
Tmux
:Ctrl
+b
then[
then you can use Arrows. Press q to quit scroll mode.Ctrl-b
+PgUp
to go straight to copy mode and scroll one page up.OR
~/.tmux.conf
file add:set -g mouse on
. Save and exit, Then:tmux source your-tmux-file
How to scroll in
…