1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Kill The Current Session as a tmux til

This commit is contained in:
jbranchaud
2016-03-02 20:27:10 -06:00
parent dc2094b1c2
commit b8453eff1b
2 changed files with 15 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ variety of languages and technologies. These are things that don't really
warrant a full blog post. These are mostly things I learn by pairing with warrant a full blog post. These are mostly things I learn by pairing with
smart people at [Hashrocket](http://hashrocket.com/). smart people at [Hashrocket](http://hashrocket.com/).
_352 TILs and counting..._ _353 TILs and counting..._
--- ---
@@ -287,6 +287,7 @@ _352 TILs and counting..._
- [Enabling Vi Mode](tmux/enabling-vi-mode.md) - [Enabling Vi Mode](tmux/enabling-vi-mode.md)
- [Jumping Between Sessions](tmux/jumping-between-sessions.md) - [Jumping Between Sessions](tmux/jumping-between-sessions.md)
- [Kill Other Connections To A Session](tmux/kill-other-connections-to-a-session.md) - [Kill Other Connections To A Session](tmux/kill-other-connections-to-a-session.md)
- [Kill The Current Session](tmux/kill-the-current-session.md)
- [List All Key Bindings](tmux/list-all-key-bindings.md) - [List All Key Bindings](tmux/list-all-key-bindings.md)
- [List Sessions](tmux/list-sessions.md) - [List Sessions](tmux/list-sessions.md)
- [Open New Window With A Specific Directory](tmux/open-new-window-with-a-specific-directory.md) - [Open New Window With A Specific Directory](tmux/open-new-window-with-a-specific-directory.md)

View File

@@ -0,0 +1,13 @@
# Kill The Current Session
When you are done with the current tmux session and you no longer need it,
you can simply kill it. You can do so within the session with the following
command:
```
:kill-session
```
Hit `<prefix>:` in order to enter the command.
See `man tmux` for more details.