summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Make a tmux-%u directory under TMUX_TMPDIR, like TMPDIR.nicm2015-01-191-2/+2
* Only care about other permissions, allow group to be set.nicm2015-01-191-2/+2
* Remove unnecessary duplicate S_ISDIR check, from Dmitri Paduchikh.nicm2015-01-191-3/+2
* Tidy up some includes.nicm2014-10-201-4/+5
* Remove the "info" message mechanism, this was only used for about fivenicm2014-04-171-6/+5
* Remove log_debug2 as well and simplify log.c.nicm2014-03-311-2/+2
* Leftovers from removing 88 colour support, from Theo Buehler.nicm2014-02-161-2/+2
* Do not attempt to read .tmux.conf if we can't figure out a homenicm2014-01-151-6/+11
* Three small changes from Tiago Cunha:nicm2014-01-091-2/+6
* We accidentally haven't been using $TMUX to work out the session for anicm2013-10-101-23/+9
* Alter how tmux handles the working directory to internally use filenicm2013-10-101-26/+4
* Merge IDENTIFY_* flags with CLIENT_* flags.nicm2013-10-101-9/+9
* Don't treat TMUX_TMPDIR as a potential filenicm2013-10-101-3/+5
* Fix previous not to leak fd on failure, whoops.nicm2013-10-051-8/+10
* Use open(".")/fchdir() to save and restore current directory rather thannicm2013-10-051-4/+10
* Rename global configuration define.nicm2013-04-241-2/+2
* Call setlocale(LC_TIME) at startup.nicm2013-04-111-1/+4
* Add TMUX_TMPDIR variable to put the socket directory outsidenicm2013-03-271-4/+6
* Remove tmux's (already minimal) 88 colour support. Such terminals arenicm2013-03-271-7/+2
* Rename session idx to session id throughout and add $ prefix to targetsnicm2013-03-251-5/+5
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-3/+1
* Correctly aggregate together errors from nested config files (withnicm2012-11-271-1/+3
* Call realpath earlier on the socket directory path rather than on thenicm2012-11-261-5/+7
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-14/+9
* Add a skeleton mode to tmux (called "control mode") that let's tmuxnicm2012-06-181-2/+8
* Do not use stderr for log file and don't call log_close when not needed.nicm2012-05-301-2/+1
* Simplify logging and just fprintf(stderr, ...) for early errors.nicm2012-05-251-5/+3
* Drop the ability to have a list of keys in the prefix in favour of twonicm2012-01-211-8/+1
* Try to resolve relative paths for loadb and saveb (first using clientnicm2011-10-231-1/+17
* Ignore LC_ALL and LC_CTYPE if they are empty as well as unset.nicm2011-10-231-3/+3
* Reject $SHELL if it is not a full path.nicm2011-09-251-2/+4
* Two fixes by Micah Cowan: make mouse work properly beyond >127 on signednicm2011-03-041-2/+2
* Set $TMUX without the session when background jobs are run.nicm2011-01-231-37/+10
* Use TMPDIR if set, from Han Boetes.nicm2011-01-121-3/+6
* Move all calls to fcntl(...O_NONBLOCK) into a function and clear thenicm2011-01-081-8/+18
* Support for UTF-8 mouse input (\033[1005h). This was added in xterm 262nicm2011-01-031-1/+2
* Move the user-visible parts of all options (names, types, limit, defaultnicm2011-01-011-109/+18
* Change from a per-session stack of buffers to one global stack which isnicm2010-12-301-2/+2
* Add other-pane-height and other-pane-width options, allowing the widthnicm2010-12-191-1/+3
* In the built-in layouts, distribute the panes more evenly. Set thenicm2010-12-081-2/+2
* Add an option to alert (monitor) for silence (lack of activity) in anicm2010-12-061-1/+3
* If VISUAL or EDITOR contains "vi", configure mode-keys and status-keysnicm2010-11-291-5/+13
* Add XAUTHORITY to update-environment, requested by Andreas Kloeckner.nicm2010-11-111-3/+6
* Merge the before and after attach client code into one in client.cnicm2010-10-181-232/+44
* Make stdio blocking again before calling shell command with -c.nicm2010-10-161-1/+9
* Trying to set FD_CLOEXEC on every fd is a lost cause, just usenicm2010-10-161-1/+3
* Use an explicit event rather than event_once for the main event so itnicm2010-10-141-4/+9
* Two new options:nicm2010-09-261-1/+3
* Do not call event_del() for signals after fork(), just use sigaction()nicm2010-08-191-3/+3
* switch back to kqueue for now, since (a) kqueue has been fixed to dealderaadt2010-08-041-4/+1