summaryrefslogtreecommitdiffstats
path: root/NOTES
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-26 14:08:16 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-26 14:08:16 +0000
commit65eeb7e421718e248790d858792fd820aabbdbe6 (patch)
treea145930e554bfb8a0609d588a8a95f740622f8de /NOTES
parentfb39b22a2e7b7c12c56b26abc8ca18f38c2d7bda (diff)
Restore -n, now after the command.
Diffstat (limited to 'NOTES')
-rw-r--r--NOTES9
1 files changed, 4 insertions, 5 deletions
diff --git a/NOTES b/NOTES
index bcc1b0ee..eacc1308 100644
--- a/NOTES
+++ b/NOTES
@@ -12,7 +12,6 @@ Commands: d detach
p previous window
l last (next to last selected) window
r refresh screen
- t set window name
w list current windows
0-9 select window
@@ -21,7 +20,7 @@ There is one default server process per user which puts its socket in
invocations will connect to the same server. The server holds multiple
sessions.
-Syntax is: tmux [-v] [-n name] [-s path] command
+Syntax is: tmux [-v] [-s path] command [flags]
The command is either list, new or attach. Create a new session with:
@@ -29,11 +28,11 @@ The command is either list, new or attach. Create a new session with:
Optionally giving it a name with:
- tmux -n <session name> new
+ tmux new -n <session name>
Attach to a previous session with:
- tmux -n <session name> attach
+ tmux attach -n <session name>
A name must (currently) be specified when attaching. This may change.
@@ -43,7 +42,7 @@ List all sessions with:
Or the windows of a single session with:
- tmux -n <session name> list
+ tmux list -n <session name>
Sessions are destroyed when no windows remain attached to them.