diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-06 08:36:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-06 08:36:26 -0700 |
commit | 111ff839f3a9b96fecd1d186340bf57e0f27e177 (patch) | |
tree | 30d433ba19ec49808cc0f0de8a161835ad5f29c9 /tmux.html.markdown | |
parent | 9fa4b5af80f1cd7fe2469c198d02a21e4f8884a1 (diff) | |
parent | 3e687f1a8ccb1cd0d52a966005551d528ca141df (diff) |
Merge pull request #4881 from verhovsky/trailing-newlines
Remove leading and trailing empty lines in code blocks
Diffstat (limited to 'tmux.html.markdown')
-rw-r--r-- | tmux.html.markdown | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tmux.html.markdown b/tmux.html.markdown index 095e24fb..0ebe6368 100644 --- a/tmux.html.markdown +++ b/tmux.html.markdown @@ -15,7 +15,6 @@ then later reattached. ``` - tmux [command] # Run a command # 'tmux' with no commands will create a new session @@ -49,7 +48,6 @@ then later reattached. -t "#" # Kill target session -a # Kill all sessions -a -t "#" # Kill all sessions but the target - ``` @@ -106,7 +104,6 @@ combinations called 'Prefix' keys. M-Up, M-Down # Resize the current pane in steps of five cells M-Left, M-Right - ``` @@ -229,7 +226,6 @@ set -g status-left "#[fg=red] #H#[fg=green]:#[fg=white]#S#[fg=green] |#[default] # Requires https://github.com/thewtex/tmux-mem-cpu-load/ set -g status-interval 4 set -g status-right "#[fg=green] | #[fg=white]#(tmux-mem-cpu-load)#[fg=green] | #[fg=cyan]%H:%M #[default]" - ``` |