summaryrefslogtreecommitdiffstats
path: root/cmd.c
AgeCommit message (Expand)Author
2014-03-31Don't write into buffer if no arguments, reported by Filipe Rosset.nicm
2014-01-09Allow attach-session -t to accept a window and pane to select them onnicm
2013-10-10We accidentally haven't been using $TMUX to work out the session for anicm
2013-10-10Remove now unused cmd_get_default_path.nicm
2013-10-10Support -c for new-session, based on code from J Raynor.nicm
2013-05-15Reserve space for \0 in cmd_print, from George Nachman.Nicholas Marriott
2013-03-25Sort includes and fix spaces.Nicholas Marriott
2013-03-25Rename session idx to session id throughout and add $ prefix to targetsNicholas Marriott
2013-03-25Add a wait-for command which blocks a client on a named channel until itNicholas Marriott
2013-03-24Add a command queue to standardize and simplify commands that call otherNicholas Marriott
2013-03-24Fix error reporting for client commands by adding a flag toNicholas Marriott
2013-03-22Need to set clients in context before changing their reference count.Nicholas Marriott
2013-03-22Add functions to allocate and free command contexts rather than doing itNicholas Marriott
2013-03-21Do not crash when calling choose-tree with a command that changes the mode.Nicholas Marriott
2013-01-18Style nits - return (x) not return x.Nicholas Marriott
2012-12-24Add ^ and $ special command targets to select lowest and highestNicholas Marriott
2012-11-27Fix session choice so that preferring unattached sessions actuallyNicholas Marriott
2012-09-24Use pgrp of pty fd not pid of immediate child when recovering currentNicholas Marriott
2012-09-03add cmd-choose-list to allow arbitrary options to be selected. FromNicholas Marriott
2012-07-11Make command exec functions return an enum rather than -1/0/1 values andNicholas Marriott
2012-07-10xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott
2012-07-08Add choose-tree command to show windows and sessions in the sameNicholas Marriott
2012-06-18Do not crash when the current session has no window, fixes a bugNicholas Marriott
2012-04-23Do not return a buffer on the stack, mentioned by jsg a while ago.Nicholas Marriott
2012-04-22Fix printing commands with no arguments, from Benjamin Poirier.Nicholas Marriott
2012-03-03Add move-pane command (like join-pane but allows the same window). AlsoNicholas Marriott
2012-02-06Don't die if fail to get root directory, from Ben Boeckel.Nicholas Marriott
2012-01-31Provide defined ways to set the various default-path possibilities: ~Nicholas Marriott
2012-01-30Give each window a unique id, like panes but prefixed with @. Based onNicholas Marriott
2012-01-20Add some const and fix a warning.Nicholas Marriott
2011-12-27Allow $HOME as default-path in tmux.conf so the same config file can be usedStefan Sperling
2011-12-09Change the way the working directory for new processes is discovered. IfNicholas Marriott
2011-06-05Add a respawn-pane command, from Marcel Partap.Nicholas Marriott
2011-06-05Get rid of the layout string code which tries to walk through the layoutNicholas Marriott
2011-05-08Fix a memory leak if cmd_pane_session succeeds, from Tiago Cunha.Nicholas Marriott
2011-04-06Change so that an empty session name always means the current sessionsNicholas Marriott
2011-04-05Add a flag to cmd_find_session so that attach-session can preferNicholas Marriott
2011-03-27Give each pane created in a tmux server a unique id (starting from 0),Nicholas Marriott
2011-01-23Set $TMUX without the session when background jobs are run.Nicholas Marriott
2011-01-04Clean up and simplify tmux command argument parsing.Nicholas Marriott
2010-12-30Change from a per-session stack of buffers to one global stack which isNicholas Marriott
2010-12-21Store sessions in an RB tree by name rather than a list, this is tidierNicholas Marriott
2010-10-29We now send argv to the server after parsing it in the client to get theNicholas Marriott
2010-10-23Add a last-pane command (bound to ; by default). Requested ages ago byNicholas Marriott
2010-10-16Fall back on normal session choice method if $TMUX exists but is invalidNicholas Marriott
2010-07-14Make pane/window wrapping more logical (so with 10 windows, +10 fromNicholas Marriott
2010-06-21Add a choose-buffer command for easier use of the paste buffer stack.Nicholas Marriott
2010-06-21Extend the -t:+ and -t:- window targets for next and previous window toNicholas Marriott
2010-05-05Identical behaviour to select-prompt can now be obtained withNicholas Marriott
2010-03-22Support up, down, left, right movement through panes with -UDLR flags toNicholas Marriott