summaryrefslogtreecommitdiffstats
path: root/tmux.c
AgeCommit message (Expand)Author
2015-01-19Make a tmux-%u directory under TMUX_TMPDIR, like TMPDIR.nicm
2014-10-20Tidy up some includes.nicm
2014-04-17Remove the "info" message mechanism, this was only used for about fivenicm
2014-03-31Remove log_debug2 as well and simplify log.c.nicm
2014-02-16Leftovers from removing 88 colour support, from Theo Buehler.nicm
2014-01-15Do not attempt to read .tmux.conf if we can't figure out a homenicm
2014-01-09Three small changes from Tiago Cunha:nicm
2013-10-10We accidentally haven't been using $TMUX to work out the session for anicm
2013-10-10Alter how tmux handles the working directory to internally use filenicm
2013-10-10Merge IDENTIFY_* flags with CLIENT_* flags.nicm
2013-10-10Don't treat TMUX_TMPDIR as a potential filenicm
2013-10-05Fix previous not to leak fd on failure, whoops.nicm
2013-10-05Use open(".")/fchdir() to save and restore current directory rather thannicm
2013-04-24Rename global configuration define.Nicholas Marriott
2013-04-11Call setlocale(LC_TIME) at startup.Nicholas Marriott
2013-03-27Add TMUX_TMPDIR variable to put the socket directory outsideNicholas Marriott
2013-03-25Rename session idx to session id throughout and add $ prefix to targetsNicholas Marriott
2013-03-24Add a command queue to standardize and simplify commands that call otherNicholas Marriott
2012-11-27Correctly aggregate together errors from nested config files (withNicholas Marriott
2012-11-26Call realpath earlier on the socket directory path rather than on theNicholas Marriott
2012-07-10xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott
2012-06-18Add a skeleton mode to tmux (called "control mode") that let's tmuxNicholas Marriott
2012-05-30Do not use stderr for log file and don't call log_close when not needed.Nicholas Marriott
2012-05-25Simplify logging and just fprintf(stderr, ...) for early errors.Nicholas Marriott
2012-01-21Drop the ability to have a list of keys in the prefix in favour of twoNicholas Marriott
2011-10-23Try to resolve relative paths for loadb and saveb (first using clientNicholas Marriott
2011-10-23Ignore LC_ALL and LC_CTYPE if they are empty as well as unset.Nicholas Marriott
2011-09-25Reject $SHELL if it is not a full path.Nicholas Marriott
2011-03-04Two fixes by Micah Cowan: make mouse work properly beyond >127 on signedNicholas Marriott
2011-01-23Set $TMUX without the session when background jobs are run.Nicholas Marriott
2011-01-12Use TMPDIR if set, from Han Boetes.Nicholas Marriott
2011-01-08Move all calls to fcntl(...O_NONBLOCK) into a function and clear theNicholas Marriott
2011-01-03Support for UTF-8 mouse input (\033[1005h). This was added in xterm 262Nicholas Marriott
2011-01-01Move the user-visible parts of all options (names, types, limit, defaultNicholas Marriott
2010-12-30Change from a per-session stack of buffers to one global stack which isNicholas Marriott
2010-12-19Add other-pane-height and other-pane-width options, allowing the widthNicholas Marriott
2010-12-08In the built-in layouts, distribute the panes more evenly. Set theNicholas Marriott
2010-12-06Add an option to alert (monitor) for silence (lack of activity) in aNicholas Marriott
2010-11-29If VISUAL or EDITOR contains "vi", configure mode-keys and status-keysNicholas Marriott
2010-11-11Add XAUTHORITY to update-environment, requested by Andreas Kloeckner.Nicholas Marriott
2010-10-18Merge the before and after attach client code into one in client.cNicholas Marriott
2010-10-16Make stdio blocking again before calling shell command with -c.Nicholas Marriott
2010-10-16Trying to set FD_CLOEXEC on every fd is a lost cause, just useNicholas Marriott
2010-10-14Use an explicit event rather than event_once for the main event so itNicholas Marriott
2010-09-26Two new options:Nicholas Marriott
2010-08-19Do not call event_del() for signals after fork(), just use sigaction()Nicholas Marriott
2010-08-04switch back to kqueue for now, since (a) kqueue has been fixed to dealTheo Deraadt
2010-07-24kqueue(2) is currently broken when used with /dev/null and a few otherNicholas Marriott
2010-07-11Return the command client return code with MSG_EXIT now that MSG_ERROR andNicholas Marriott
2010-06-28Send all three of stdin, stdout, stderr from the client to the server, so thatNicholas Marriott