diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-02-25 18:24:46 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-02-25 23:25:44 +0300 |
commit | 7fa3f2d7cce6ec146cc813df71373c5723a69572 (patch) | |
tree | fcf53afafa044a7145457acaaf6adf810823f37e | |
parent | .gitconfig: alias.s = status (diff) | |
download | linux-home-7fa3f2d7cce6ec146cc813df71373c5723a69572.tar.gz linux-home-7fa3f2d7cce6ec146cc813df71373c5723a69572.zip |
tmux: add a shortcut for `kill-session -a`
-rw-r--r-- | %HOME%/.tmux.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/%HOME%/.tmux.conf b/%HOME%/.tmux.conf index af2d9bc..d9d05d4 100644 --- a/%HOME%/.tmux.conf +++ b/%HOME%/.tmux.conf @@ -53,6 +53,8 @@ set-window-option -g aggressive-resize on # X to kill the current session. bind X confirm-before kill-session +# A to kill all but the current session. +bind A confirm-before 'kill-session -a' # R to reload this file. bind R source-file ~/.tmux.conf \; display "Reloaded!" |