diff --git a/Misc/Virtual-Terminals.md b/Misc/Virtual-Terminals.md index ccd0e23a701e74b4971c4e2c6b49b2a86941fa45..bdd0163d9d2215513cfde5277878b8686bce84ec 100644 --- a/Misc/Virtual-Terminals.md +++ b/Misc/Virtual-Terminals.md @@ -35,6 +35,11 @@ tmux kill-server A useful feature is to create a split screen in tmux. so inside a tmux session switch to command mode (`CTRL+b`) and push `"` for horizontal split or `%` for vertical split. Moving between splits or here called panes can be done in multiple ways, but easily with `CTRL+b` and the arrow-keys  +enable mouse srolling and a longer history, write to `~/.tmux.conf`: +``` +set-window-option -g mode-mouse on +set -g history-limit 30000 +``` ### Sharing a tmux session with other users?