diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-07-09 19:04:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-07-09 19:04:12 +0000 |
commit | a41ece5ff0d3ce7a0b7d987baa9759f8a012b48b (patch) | |
tree | 95adfffa5b036fe4c593254efd2b32aa03696b34 /NOTES | |
parent | 2905e0ef10926ab6f538598228a71e40844a8be6 (diff) | |
download | rtmux-a41ece5ff0d3ce7a0b7d987baa9759f8a012b48b.tar.gz rtmux-a41ece5ff0d3ce7a0b7d987baa9759f8a012b48b.tar.bz2 rtmux-a41ece5ff0d3ce7a0b7d987baa9759f8a012b48b.zip |
Initial import to CVS. Basic functions are working, albeit with a couple of showstopper memory bugs and many missing features. Detaching, reattaching, creating new sessions, listing sessions work acceptably for using with shells. Simple curses programs (top, systat, tetris) and more complicated ones (mutt, emacs) that don't require scrolling regions (ESC[r) mostly work fine (including mutt, emacs). No status bar yet and no key remapping or other customisation.
Diffstat (limited to 'NOTES')
-rw-r--r-- | NOTES | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +Command prefix is C-b. + +Commands: d detach + c create new terminal + n next terminal + p previous terminal + r refresh screen + t set window name + 0-9 select window + +There is one default server process per user which puts its socket in +/tmp/tmux-UID. It is created the first time tmux is run and subsequent +invocations will connect to the same server. The server holds multiple +sessions, call tmux with "-n <session name>" to create a session or attach to +an existing session. All the sessions may be listed with -l, or the windows of +a single session with "-ln <session name>". Sessions are destroyed when no +windows remain attached to them. + +Another server process can be used by specifying an alternative socket path with +"-s <path>" but it shouldn't normally be required. + +You can set the window title (listed in -l), using the \e] escape sequence. For +example: + + $ echo -n \\033]0;My Title\\007 + +There is currently no method for setting the window name (what will eventually +be shown in the status bar). + +You might get message "couldn't find server" after a crash, in this case you +must remove the /tmp/tmux-`id -u` file manually. |