frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Yet another tmux cheat sheet

https://tmuxai.dev/tmux-cheat-sheet/
56•alvinunreal•1d ago

Comments

Ciantic•1d ago
I like this, I would like to add: If you don't use tmux often, then enabling only the mouse support makes it much easier:

   $ cat .tmux.conf
   setw -g mouse on
Now holding the right mouse button brings up the context menu: horizontal split, vertical split, etc. And you can swap, of course, between panes with the mouse.

This is much easier to remember than the various keyboard shortcuts.

Copy & pasting, however, can be a bit frustrating. I also use this in my .tmux.conf:

    # Ctrl+b then v to paste from tmux's clipboard
    bind-key -T prefix v paste-buffer -p
alvinunreal•1d ago
good suggestion, added mouse tip, tnx