Last active
August 8, 2018 19:35
-
-
Save mikejoh/b8423e7a4a7826028c5368f7463cb242 to your computer and use it in GitHub Desktop.
Revisions
-
mikejoh revised this gist
Aug 8, 2018 . 1 changed file with 11 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,17 @@ _To enter command mode in tmux do: Prefix + `:`_ select-pane -P 'bg=red' ``` ## Synchronize commands across panes (command mode) ``` setw synchronize-panes on|off ``` ## Show border status in all panes (command mode) ``` set pane-border-status top ``` ## Set custom border text in current pane (command mode) ``` select-pane -T "server-0" ``` -
mikejoh revised this gist
Aug 8, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # tmux one-liners _To enter command mode in tmux do: Prefix + `:`_ -
mikejoh created this gist
Aug 8, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ # tmux one liners _To enter command mode in tmux do: Prefix + `:`_ ## Set background color in current pane (command mode) ``` select-pane -P 'bg=red' ``` ## Synchronize across panes (command mode) ``` setw synchronize-panes on|off ```