aboutsummaryrefslogtreecommitdiff
path: root/server-fn.c
Commit message (Expand)AuthorAge
* Add a skeleton mode to tmux (called "control mode") that let's tmuxNicholas Marriott2012-06-18
* Add a helper function to send ready message.Nicholas Marriott2012-05-22
* Instead of passing stdin/stdout/stderr file descriptors over imsg andNicholas Marriott2012-05-21
* Add a flag to move-window to renumber the windows in a session (closingNicholas Marriott2012-04-29
* Add notify hooks for various events, the functions are currently emptyNicholas Marriott2012-03-17
* Check event_initialized before event_del if event may not have been setNicholas Marriott2012-03-17
* Call bufferevent_free before closing file descriptor associated with itNicholas Marriott2012-01-29
* Support for \e[3J to clear the history. Also send the correspondingNicholas Marriott2011-10-23
* Mark dead panes with some text saying they are dead, suggested by andNicholas Marriott2011-09-05
* Set $TMUX without the session when background jobs are run.Nicholas Marriott2011-01-23
* Don't reset the activity timer for unattached sessions every second,Nicholas Marriott2011-01-01
* server_kill_window can modify the RB tree so don't use RB_FOREACH, fixesNicholas Marriott2010-12-23
* Store sessions in an RB tree by name rather than a list, this is tidierNicholas Marriott2010-12-21
* Use pointer rather than index for the client's last session.Nicholas Marriott2010-12-20
* Track the last session for a client and add a flag to switch-client andNicholas Marriott2010-12-11
* Set cause when failing due to linking a window to itself, from MartinNicholas Marriott2010-10-09
* Skip NULL entries in the sessions list when choosing the next session,Nicholas Marriott2010-10-05
* Two new options:Nicholas Marriott2010-09-26
* Treat trying to link or move to the same window as an error to avoidNicholas Marriott2010-08-11
* When changing so that the client passes its stdout and stderr as well asNicholas Marriott2010-07-24
* New option, detach-on-destroy, to set what happens to a client when the sessionNicholas Marriott2010-06-27
* Use server_destroy_session() for kill-session.Nicholas Marriott2010-06-26
* Having a list of winlinks->alerts for each session is stupid, just storeNicholas Marriott2010-06-21
* If remain-on-exit is set, both the error callback and a SIGCHLD couldNicholas Marriott2010-04-17
* Dead functions, lint.Nicholas Marriott2010-03-22
* When a window is destroyed, remove all links to it from each session ratherNicholas Marriott2010-01-23
* Options to set the colour of the pane borders, with different colours for theNicholas Marriott2010-01-03
* Fix a couple of problems with grouped sessions reported by danh: redrawNicholas Marriott2009-12-22
* Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastNicholas Marriott2009-12-03
* Remove a couple of unused arguments where possible, and add /* ARGSUSED */ toNicholas Marriott2009-11-26
* Destroy panes immediately rather than checking them all every loop.Nicholas Marriott2009-11-13
* Use timeout events for the identify and message timers.Nicholas Marriott2009-11-04
* Don't reenlist the client imsg event every loop, instead have a small functionNicholas Marriott2009-11-04
* Set the current window pointer to NULL when killing a winlink that is to beNicholas Marriott2009-10-11
* Add "grouped sessions" which have independent name, options, current window andNicholas Marriott2009-10-10
* Check for already locked/suspended clients in server_lock_client rather thanNicholas Marriott2009-10-04
* New lock-client and lock-session commands to lock an individual client or allNicholas Marriott2009-09-24
* Remove the internal tmux locking and instead detach each client and run theNicholas Marriott2009-09-23
* Move some common and untidy code for window link/unlink into generic functionsNicholas Marriott2009-09-20
* Regularise some fatal messages.Nicholas Marriott2009-09-20
* Tidy some common code for destroying sessions into a new function.Nicholas Marriott2009-09-12
* Only redraw all clients once when the backoff timer expires rather than everyNicholas Marriott2009-09-05
* When incorrect passwords are entered, behave similarly to login(1) and backoffNicholas Marriott2009-09-02
* Use "Password:" with no space for password prompts and don't display a *s forNicholas Marriott2009-09-01
* Add a new display-panes command, with two options (display-panes-colour andNicholas Marriott2009-08-31
* Switch tmux to use imsg. This is the last major change to make theNicholas Marriott2009-08-11
* Infrastructure and commands to manage the environment for processes startedNicholas Marriott2009-08-08
* If there is an error in the configuration file, don't just exit(1) as this canNicholas Marriott2009-08-07
* Rename struct hdrtype to msgtype which is a better name and can be used evenNicholas Marriott2009-07-29
* Make all messages sent between the client and server fixed size.Nicholas Marriott2009-07-26