summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* expand_paths needs the global environment to be set up, do that first.nicm2021-02-221-7/+7
* Move config file path expansion much earlier, keep the list of pathsnicm2021-02-221-13/+26
* Add -N flag to never start server even if command would normally do so,nicm2021-01-171-3/+6
* Fix warnings on some platforms with %llx and add a new message to handlenicm2020-09-221-3/+3
* Use CLOCK_MONOTONIC for timer measurement and add a timestamp to controlnicm2020-06-021-1/+15
* Add a -D flag to ask tmux not to daemonize, useful both for running anicm2020-05-161-3/+8
* Add 'e' key in buffer mode to open the buffer in an editor.nicm2020-05-161-1/+2
* Build list of paths and weed out duplicates before loading configs, andnicm2020-05-161-19/+91
* Tidy up the terminal detection and feature code and add named sets ofnicm2020-04-201-10/+12
* Show signal name when process exits rather than number.nicm2020-04-161-1/+13
* More style nits.nicm2020-04-091-2/+2
* Add a way to mark environment variables as "hidden" so they can be usednicm2020-03-311-3/+3
* Ignore default-shell (and use /bin/sh) if it invalid not just if it isnicm2020-03-171-4/+4
* When the server socket is given by the user with -S, create it withnicm2020-03-121-6/+9
* -V also needs to go in usage.nicm2020-01-281-2/+2
* Reduce a difference with portable tmux by adding the -V flag andnicm2020-01-281-2/+20
* Memory leaks, from Igor Wong in GitHub issue 1934.nicm2019-10-141-1/+2
* Add a per-pane option set. Pane options inherit from window options (sonicm2019-06-201-4/+4
* Merge hooks into options and make each one an array option. This allowsnicm2019-04-261-4/+1
* Do not use PWD unless it actually matches the real working directory.nicm2018-11-221-4/+27
* Improve error message if creating socket parent directory fails, fromnicm2018-01-121-18/+20
* Prefer PWD for current directory if present in client, from Wei Zhao innicm2018-01-011-4/+5
* Make shell_command a global like other stuff rather than making it annicm2017-07-121-7/+7
* Try C.UTF-8 which is also a commonly useful locale on some platforms,nicm2017-07-031-2/+3
* Do not need getopt.h.nicm2017-04-221-2/+1
* Use fdforkpty() instead of our own unwrapped versions.nicm2017-04-201-3/+4
* Style nits and a missing cast.nicm2017-04-191-2/+2
* Memory leak, from David CARLIER.nicm2017-04-161-1/+3
* Use uid_t for UID not u_int.nicm2017-03-211-4/+3
* Style nits.nicm2017-02-161-2/+2
* Open /dev/ptm before pledge() and save it to be used for PTMGET laternicm2017-01-231-1/+4
* Major tidy up and rework of options tree and set-option/show-optionsnicm2017-01-151-11/+21
* Simplify appending to string options.nicm2017-01-121-2/+3
* Spacing nits.nicm2016-12-091-2/+2
* Add static in window-*.c and move some internal functions out of tmux.h.nicm2016-10-111-3/+6
* Loads more static, except for cmd-*.c and window-*.c.nicm2016-10-101-4/+4
* Use getprogname() instead of __progname to make portability easier.nicm2016-05-271-3/+3
* Fix up a couple of long lines.nicm2016-05-041-3/+2
* If setlocale("en_US.UTF-8") succeeds, then don't do the check for UTF-8nicm2016-03-051-5/+10
* Although we always have en_US.UTF-8 on OpenBSD, some platforms do not,nicm2016-03-051-3/+6
* Remove unused variables, from Michal Mazurek.nicm2016-03-011-2/+1
* Use system wcwidth() instead of carrying around UTF-8 width tables.nicm2016-03-011-1/+4
* I no longer use my SourceForge address so replace it.nicm2016-01-191-2/+2
* Add hooks infrastructure, basic commands (set-hook, show-hooks) and anicm2015-12-081-1/+4
* Make environ_set va_args and use it to tidy up some calls. Also add anicm2015-11-241-2/+2
* Shell command from -c doesn't have to be global, pass it as an argument.nicm2015-11-241-7/+6
* Tidy the code that works out the socket path, and just use the full pathnicm2015-11-241-48/+40
* Remove malloc_options DEBUG bit.nicm2015-11-241-9/+1
* Remove the -I part of show-messages which isn't really that useful; thenicm2015-11-241-2/+2
* Make the log stuff a bit tidier with some helper functions.nicm2015-11-241-15/+2