summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Add a flag to cmd_find_session so that attach-session can prefernicm2011-04-051-14/+20
* Give each pane created in a tmux server a unique id (starting from 0),nicm2011-03-271-12/+89
* Set $TMUX without the session when background jobs are run.nicm2011-01-231-2/+2
* Clean up and simplify tmux command argument parsing.nicm2011-01-041-29/+31
* Change from a per-session stack of buffers to one global stack which isnicm2010-12-301-2/+1
* Store sessions in an RB tree by name rather than a list, this is tidiernicm2010-12-211-25/+34
* We now send argv to the server after parsing it in the client to get thenicm2010-10-291-1/+17
* Add a last-pane command (bound to ; by default). Requested ages ago bynicm2010-10-231-1/+2
* Fall back on normal session choice method if $TMUX exists but is invalidnicm2010-10-161-9/+5
* Make pane/window wrapping more logical (so with 10 windows, +10 fromnicm2010-07-141-80/+79
* Add a choose-buffer command for easier use of the paste buffer stack.nicm2010-06-211-1/+2
* Extend the -t:+ and -t:- window targets for next and previous window tonicm2010-06-211-65/+124
* Identical behaviour to select-prompt can now be obtained withnicm2010-05-051-2/+1
* Support up, down, left, right movement through panes with -UDLR flags tonicm2010-03-221-5/+17
* Permit !, + and - to be used for window targets to specify last window (!), ornicm2010-01-191-9/+57
* New command, join-pane, to split and move an existing pane into the space (likenicm2010-01-071-1/+2
* Permit panes to be referred to as "top", "bottom", "top-left" etc, if the rightnicm2009-12-081-15/+28
* Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastnicm2009-12-031-12/+12
* New command, capture-pane, which copies the entire pane contents to a pastenicm2009-12-011-1/+2
* Use home from struct passwd if HOME is empty as well as if it is NULL, and fixnicm2009-11-211-3/+2
* Add a per-client log of status line messages displayed while that clientnicm2009-11-181-1/+2
* Add an activity time for clients, like for sessions, and change session andnicm2009-11-031-28/+29
* If it isn't available explicitly, work out the current client in a similar waynicm2009-11-031-31/+47
* Change session and client activity and creation time members to have morenicm2009-11-031-5/+5
* When matching the session names with -t, look for exact matches first beforenicm2009-11-021-9/+14
* tabs are better; ok nicmderaadt2009-10-261-3/+3
* cmd_find_client shouldn't die when there is an empty slot in the clientsnicm2009-10-141-8/+9
* Don't allow cmd_lookup_client to test clients without a session.nicm2009-10-141-2/+3
* Add a pipe-pane command to allow a pane to be piped to a shell command, fornicm2009-10-111-1/+2
* Split list-panes off from list-windows.nicm2009-10-101-1/+2
* Fix comment.nicm2009-10-071-2/+2
* Remove scroll mode which is now redundant, copy mode should be used instead.nicm2009-10-061-2/+1
* If no target client is specified to commands which accept one, try to guess thenicm2009-10-051-3/+50
* New lock-client and lock-session commands to lock an individual client or allnicm2009-09-241-1/+3
* Remove the internal tmux locking and instead detach each client and run thenicm2009-09-231-6/+1
* run-shell command to run a shell command without opening a window, sendingnicm2009-09-201-1/+2
* Add a new display-panes command, with two options (display-panes-colour andnicm2009-08-311-1/+2
* Add a choose-client command and extend choose-{session,window} to accept anicm2009-08-251-1/+43
* The cursession member in struct cmd_ctx is always either curclient->session ornicm2009-08-231-3/+3
* Infrastructure and commands to manage the environment for processes startednicm2009-08-081-1/+3
* Merge pane number into the target specification for pane commands. Instead ofnicm2009-07-301-1/+86
* Add an additional heuristic to work out the current session when run from thenicm2009-07-291-8/+47
* Make all messages sent between the client and server fixed size.nicm2009-07-261-83/+59
* cmd_find_index should return -2 on error.nicm2009-07-241-2/+2
* Tidy the target parsing code a bit and correct the behaviour so that as beforenicm2009-07-221-54/+90
* - New command display-message (alias display) to display a message in thenicm2009-07-171-1/+2
* Return -1 not NULL on error, pointed out by Roy Marples.nicm2009-07-151-2/+2
* Tidy up and improve target (-t) argument parsing:nicm2009-07-131-50/+372
* New command, if-shell (alias if). Executes the tmux command in the secondnicm2009-07-091-1/+2
* Don't let ambiguous commands override an exact alias match: eg if commandsnicm2009-07-071-3/+6