summaryrefslogtreecommitdiffstats
path: root/cmd.c
AgeCommit message (Expand)Author
2015-09-01All the cmd_*_entry declarations do not need to be in tmux.h.nicm
2015-04-27Rewrite of the target resolution internals to be simpler and morenicm
2015-04-25Make message log a TAILQ.nicm
2015-04-25Move the functions to convert ids from strings into session.c and window.c.nicm
2015-04-24Convert clients list into a TAILQ.nicm
2015-04-21Look up indexes as number before name, makes more sense if windows arenicm
2015-04-19Rewrite of tmux mouse support which was a mess. Instead of havingnicm
2014-10-08Add xreallocarray and remove nmemb argument from xrealloc.nicm
2014-09-25Support using pane id as part of session or window specifier (so %1nicm
2014-09-25Support ! for last pane.nicm
2014-07-13Show an error if cmd_find_session can't find the current session, likenicm
2014-05-13If multiple arguments are given to new-session, new-window,nicm
2014-05-09Just use char ** for argv like normal people, not char *const *.nicm
2014-04-16Remove the choose-list command to prepare for some later choose-* work.nicm
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