Linux/tmux: Difference between revisions

From Wiki
mNo edit summary
mNo edit summary
Line 1: Line 1:
== Shortcuts ==
<pre>
* CTRL-b + "        Split current pane vertically into two panes
* CTRL-b + %        Split current pane horizontally into two panes
* CTRL-b + d        detach
</pre>
== Reattach ==
<pre>
tmux ls
tmux attach -t 0
</pre>
== .tmux.conf ==
== .tmux.conf ==
<pre>
<pre>
Line 4: Line 20:
</pre>
</pre>


== Shortcuts ==
* CTRL+b " -> Split current pane vertically into two panes
* CTRL+b % -> Split current pane horizontally into two panes


[[Category:Linux/CL-Tools]]
[[Category:Linux/CL-Tools]]
[[Category:Linux]]
[[Category:Linux]]

Revision as of 17:02, 23 December 2021

Shortcuts

* CTRL-b + "         Split current pane vertically into two panes
* CTRL-b + %         Split current pane horizontally into two panes

* CTRL-b + d         detach


Reattach

tmux ls
tmux attach -t 0


.tmux.conf

set -g mouse on