From f7d8ac2dc5693eba28b316292995cc6d588d49df Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sat, 4 Jul 2015 08:26:07 -0500 Subject: [PATCH] Add Create A Named tmux Session as a tmux til. --- README.md | 1 + tmux/create-a-named-tmux-session.md | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 tmux/create-a-named-tmux-session.md diff --git a/README.md b/README.md index e115fab..71a6759 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/tmux/create-a-named-tmux-session.md b/tmux/create-a-named-tmux-session.md new file mode 100644 index 0000000..5218a7f --- /dev/null +++ b/tmux/create-a-named-tmux-session.md @@ -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)