diff options
| author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-05 21:25:00 +0000 |
|---|---|---|
| committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-05 21:25:00 +0000 |
| commit | 0b9b873a5505de6fdfb8f02cfbaef5fc82831a5f (patch) | |
| tree | f034330734848ce9df96ee94ab4dc6a7ad025dc9 /CHANGES | |
| parent | ee1a7fded7653ffc2ba68a4188c89a7cb6e1bf1d (diff) | |
| download | rtmux-0b9b873a5505de6fdfb8f02cfbaef5fc82831a5f.tar.gz rtmux-0b9b873a5505de6fdfb8f02cfbaef5fc82831a5f.tar.bz2 rtmux-0b9b873a5505de6fdfb8f02cfbaef5fc82831a5f.zip | |
Big reorganisation of command-line syntax.
Diffstat (limited to 'CHANGES')
| -rw-r--r-- | CHANGES | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -1,5 +1,26 @@ 05 June 2008 +* Completely reorganise command parsing. Much more common code in cmd-generic.c + and a new way of specifying windows, clients or sessions. Now, most commands + take a -t argument, which specifies a client, a session, or a window target. + Clients and sessions are given alone (sessions are fnmatch(3)d and + clients currently not), windows are give by (client|session):index. For + example, if a user is in session "1" window 0 on /dev/ttypi, these should all + be equivalent: + + tmux renamew newname (current session and window) + tmux renamew -t: newname (current session and window) + tmux renamew -t:0 newname (current session, window 0) + tmux renamew -t0 newname (current session, window 0) + tmux renamew -t1:0 newname (session 1, window 0) + tmux renamew -t1: newname (session 1, current window) + tmux renamew -t/dev/ttypi newname (client /dev/ttypi's current + session and window) + tmux renamew -t/dev/ttypi: newname (client /dev/ttypi's current + session and window) + tmux renamew -t/dev/ttypi:0 newname (client /dev/ttypi's current + session, window 0) + * Infrastructure for printing arguments in list-keys output. Easy ones only for now. @@ -408,4 +429,4 @@ (including mutt, emacs). No status bar yet and no key remapping or other customisation. -$Id: CHANGES,v 1.110 2008-06-05 16:35:31 nicm Exp $ +$Id: CHANGES,v 1.111 2008-06-05 21:24:59 nicm Exp $ |