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

Add Create A Named tmux Session as a tmux til.

This commit is contained in:
jbranchaud
2015-07-04 08:26:07 -05:00
parent 77f6ffd056
commit f7d8ac2dc5
2 changed files with 19 additions and 0 deletions

View File

@@ -107,6 +107,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
### tmux
- [Create A Named tmux Session](tmux/create-a-named-tmux-session.md)
- [List All Key Bindings](tmux/list-all-key-bindings.md)
- [Organizing Windows](tmux/organizing-windows.md)
- [Reclaiming The Entire Window](tmux/reclaiming-the-entire-window.md)

View File

@@ -0,0 +1,18 @@
# Create A Named tmux Session
When creating a new tmux session
```bash
$ tmux new
```
a default name of `0` will be given to the session.
If you'd like to give your session a name with a bit more meaning, use the
`-s`
```bash
$ tmux new -s burrito
```
[source](https://robots.thoughtbot.com/a-tmux-crash-course)