summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.c
AgeCommit message (Expand)Author
2020-06-02Use CLOCK_MONOTONIC for timer measurement and add a timestamp to controlNicholas Marriott
2020-05-16Add a -D flag to ask tmux not to daemonize, useful both for running aNicholas Marriott
2020-05-16Add 'e' key in buffer mode to open the buffer in an editor.Nicholas Marriott
2020-05-16Build list of paths and weed out duplicates before loading configs, andNicholas Marriott
2020-04-20Tidy up the terminal detection and feature code and add named sets ofNicholas Marriott
2020-04-16Show signal name when process exits rather than number.Nicholas Marriott
2020-04-09More style nits.Nicholas Marriott
2020-03-31Add a way to mark environment variables as "hidden" so they can be usedNicholas Marriott
2020-03-17Ignore default-shell (and use /bin/sh) if it invalid not just if it isNicholas Marriott
2020-03-12When the server socket is given by the user with -S, create it withNicholas Marriott
2020-01-28-V also needs to go in usage.Nicholas Marriott
2020-01-28Reduce a difference with portable tmux by adding the -V flag andNicholas Marriott
2019-10-14Memory leaks, from Igor Wong in GitHub issue 1934.Nicholas Marriott
2019-06-20Add a per-pane option set. Pane options inherit from window options (soNicholas Marriott
2019-04-26Merge hooks into options and make each one an array option. This allowsNicholas Marriott
2018-11-22Do not use PWD unless it actually matches the real working directory.Nicholas Marriott
2018-01-12Improve error message if creating socket parent directory fails, fromNicholas Marriott
2018-01-01Prefer PWD for current directory if present in client, from Wei Zhao inNicholas Marriott
2017-07-12Make shell_command a global like other stuff rather than making it anNicholas Marriott
2017-07-03Try C.UTF-8 which is also a commonly useful locale on some platforms,Nicholas Marriott
2017-04-22Do not need getopt.h.Nicholas Marriott
2017-04-20Use fdforkpty() instead of our own unwrapped versions.Nicholas Marriott
2017-04-19Style nits and a missing cast.Nicholas Marriott
2017-04-16Memory leak, from David CARLIER.Nicholas Marriott
2017-03-21Use uid_t for UID not u_int.Nicholas Marriott
2017-02-16Style nits.Nicholas Marriott
2017-01-23Open /dev/ptm before pledge() and save it to be used for PTMGET laterNicholas Marriott
2017-01-15Major tidy up and rework of options tree and set-option/show-optionsNicholas Marriott
2017-01-12Simplify appending to string options.Nicholas Marriott
2016-12-09Spacing nits.Nicholas Marriott
2016-10-11Add static in window-*.c and move some internal functions out of tmux.h.Nicholas Marriott
2016-10-10Loads more static, except for cmd-*.c and window-*.c.Nicholas Marriott
2016-05-27Use getprogname() instead of __progname to make portability easier.Nicholas Marriott
2016-05-04Fix up a couple of long lines.Nicholas Marriott
2016-03-05If setlocale("en_US.UTF-8") succeeds, then don't do the check for UTF-8Nicholas Marriott
2016-03-05Although we always have en_US.UTF-8 on OpenBSD, some platforms do not,Nicholas Marriott
2016-03-01Remove unused variables, from Michal Mazurek.Nicholas Marriott
2016-03-01Use system wcwidth() instead of carrying around UTF-8 width tables.Nicholas Marriott
2016-01-19I no longer use my SourceForge address so replace it.Nicholas Marriott
2015-12-08Add hooks infrastructure, basic commands (set-hook, show-hooks) and aNicholas Marriott
2015-11-24Make environ_set va_args and use it to tidy up some calls. Also add aNicholas Marriott
2015-11-24Shell command from -c doesn't have to be global, pass it as an argument.Nicholas Marriott
2015-11-24Tidy the code that works out the socket path, and just use the full pathNicholas Marriott
2015-11-24Remove malloc_options DEBUG bit.Nicholas Marriott
2015-11-24Remove the -I part of show-messages which isn't really that useful; theNicholas Marriott
2015-11-24Make the log stuff a bit tidier with some helper functions.Nicholas Marriott
2015-11-22Add getpw to pledge, makes tmux work in YP environments, discovered byNicholas Marriott
2015-11-20Instead of separate tables for different types of options, give eachNicholas Marriott
2015-11-15Accidentally turned off pledge, turn it back on.Nicholas Marriott
2015-11-14Push stdout and stderr to clients more aggressively, and add an event toNicholas Marriott