- 6d8efe9 expand_paths needs the global environment to be set up, do that first. by nicm · 3 years, 9 months ago
- 6876381 Move config file path expansion much earlier, keep the list of paths by nicm · 3 years, 9 months ago
- 71c590a Add -N flag to never start server even if command would normally do so, by nicm · 3 years, 10 months ago
- 86d6ac2 Fix warnings on some platforms with %llx and add a new message to handle by nicm · 4 years, 2 months ago
- f393149 Use CLOCK_MONOTONIC for timer measurement and add a timestamp to control by nicm · 4 years, 6 months ago
- dceb6a1 Add a -D flag to ask tmux not to daemonize, useful both for running a by nicm · 4 years, 6 months ago
- 7859545 Add 'e' key in buffer mode to open the buffer in an editor. by nicm · 4 years, 6 months ago
- a29196c Build list of paths and weed out duplicates before loading configs, and by nicm · 4 years, 6 months ago
- c91b4b2 Tidy up the terminal detection and feature code and add named sets of by nicm · 4 years, 7 months ago
- a2e47b5 Show signal name when process exits rather than number. by nicm · 4 years, 7 months ago
- a1fc8f8 More style nits. by nicm · 4 years, 8 months ago
- cc8b41f Add a way to mark environment variables as "hidden" so they can be used by nicm · 4 years, 8 months ago
- 115bb33 Ignore default-shell (and use /bin/sh) if it invalid not just if it is by nicm · 4 years, 8 months ago
- 2a5702a When the server socket is given by the user with -S, create it with by nicm · 4 years, 9 months ago
- 84995ae -V also needs to go in usage. by nicm · 4 years, 10 months ago
- f165221 Reduce a difference with portable tmux by adding the -V flag and by nicm · 4 years, 10 months ago
- 68d59a1 Memory leaks, from Igor Wong in GitHub issue 1934. by nicm · 5 years ago
- 5f92f92 Add a per-pane option set. Pane options inherit from window options (so by nicm · 5 years ago
- dfb7bb6 Merge hooks into options and make each one an array option. This allows by nicm · 6 years ago
- 3a7b9d5 Do not use PWD unless it actually matches the real working directory. by nicm · 6 years ago
- f32fd2d Improve error message if creating socket parent directory fails, from by nicm · 7 years ago
- d17c905 Prefer PWD for current directory if present in client, from Wei Zhao in by nicm · 7 years ago
- ed3cfaa Make shell_command a global like other stuff rather than making it an by nicm · 7 years ago
- 42285ac Try C.UTF-8 which is also a commonly useful locale on some platforms, by nicm · 7 years ago
- ae1a6c2 Do not need getopt.h. by nicm · 8 years ago
- 87997ef Use fdforkpty() instead of our own unwrapped versions. by nicm · 8 years ago
- 689f4bf Style nits and a missing cast. by nicm · 8 years ago
- d566c78 Memory leak, from David CARLIER. by nicm · 8 years ago
- 04e17a7 Use uid_t for UID not u_int. by nicm · 8 years ago
- 8b8d096 Style nits. by nicm · 8 years ago
- 98e7fbb Open /dev/ptm before pledge() and save it to be used for PTMGET later by nicm · 8 years ago
- 2b0bc9f Major tidy up and rework of options tree and set-option/show-options by nicm · 8 years ago
- 24cba59 Simplify appending to string options. by nicm · 8 years ago
- bee95bf Spacing nits. by nicm · 8 years ago
- e454018 Add static in window-*.c and move some internal functions out of tmux.h. by nicm · 8 years ago
- c426e48 Loads more static, except for cmd-*.c and window-*.c. by nicm · 8 years ago
- fcb00a4 Use getprogname() instead of __progname to make portability easier. by nicm · 8 years ago
- 9f04578 Fix up a couple of long lines. by nicm · 9 years ago
- 0d6de44 If setlocale("en_US.UTF-8") succeeds, then don't do the check for UTF-8 by nicm · 9 years ago
- 1f0b317 Although we always have en_US.UTF-8 on OpenBSD, some platforms do not, by nicm · 9 years ago
- e647eeb Remove unused variables, from Michal Mazurek. by nicm · 9 years ago
- 26945d7 Use system wcwidth() instead of carrying around UTF-8 width tables. by nicm · 9 years ago
- 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
- d2fb0ef Add hooks infrastructure, basic commands (set-hook, show-hooks) and a by nicm · 9 years ago
- 62d3af1 Make environ_set va_args and use it to tidy up some calls. Also add a by nicm · 9 years ago
- 3ff46b2 Shell command from -c doesn't have to be global, pass it as an argument. by nicm · 9 years ago
- c913fb9 Tidy the code that works out the socket path, and just use the full path by nicm · 9 years ago
- 8976dac Remove malloc_options DEBUG bit. by nicm · 9 years ago
- 1e2df2d Remove the -I part of show-messages which isn't really that useful; the by nicm · 9 years ago
- 9cccb8c Make the log stuff a bit tidier with some helper functions. by nicm · 9 years ago
- 01a2ddf Add getpw to pledge, makes tmux work in YP environments, discovered by by nicm · 9 years ago
- fce56c5 Instead of separate tables for different types of options, give each by nicm · 9 years ago
- a582b62 Accidentally turned off pledge, turn it back on. by nicm · 9 years ago
- c56b81a Push stdout and stderr to clients more aggressively, and add an event to by nicm · 9 years ago
- 0cc812a tmux is UTF-8, so if $TMUX is set (tmux running in tmux), the client is by nicm · 9 years ago
- 1b86f52 Nuke the utf8 and status-utf8 options and make tmux only a UTF-8 by nicm · 9 years ago
- 00c34df Drop mouse-utf8 option and always turn on UTF-8 mouse if the client says by nicm · 9 years ago
- bf9c933 Like options, move the environ struct into environ.c. by nicm · 9 years ago
- 44657bf Move struct options into options.c. by nicm · 9 years ago
- 07b0ea0 Break the common process set up, event loop and imsg dispatch code by nicm · 9 years ago
- 3034a71 Let's see if anyone screams about not being able to specify $TMPDIR by deraadt · 9 years ago
- 5383b04 tmux can call pledge() in main with large set and then reduce it by nicm · 9 years ago
- 216ddf3 Move tzset() from log_open to main. by nicm · 9 years ago
- 82326dc A couple of style nits. by nicm · 9 years ago
- 952ba84 Work out config file when needed not at startup. by nicm · 9 years ago
- 6a539c0 Path from $TMUX does not need to be global anymore. by nicm · 9 years ago
- c6e9160 Login shell can be a client flag, and move the exec code into client.c. by nicm · 9 years ago
- dd92b6e Event base does not need to be global. by nicm · 9 years ago
- b87dc60 Some style nits and dead assignments. by nicm · 9 years ago
- 92af376 Add an option (history-file) for a file to save/restore command prompt by nicm · 9 years ago
- dc0d34e tweak SYNOPSIS and usage(); by jmc · 9 years ago
- d451502 Make a tmux-%u directory under TMUX_TMPDIR, like TMPDIR. by nicm · 10 years ago
- 900f6fc Tidy up some includes. by nicm · 10 years ago
- 2740490 Remove the "info" message mechanism, this was only used for about five by nicm · 11 years ago
- 48478ea Remove log_debug2 as well and simplify log.c. by nicm · 11 years ago
- 81db6ba Leftovers from removing 88 colour support, from Theo Buehler. by nicm · 11 years ago
- 938768e Do not attempt to read .tmux.conf if we can't figure out a home by nicm · 11 years ago
- adc1f21 Three small changes from Tiago Cunha: by nicm · 11 years ago
- c1ccefc We accidentally haven't been using $TMUX to work out the session for a by nicm · 11 years ago
- 282c5f9 Alter how tmux handles the working directory to internally use file by nicm · 11 years ago
- eb26dbd Merge IDENTIFY_* flags with CLIENT_* flags. by nicm · 11 years ago
- e4dc156 Don't treat TMUX_TMPDIR as a potential file by nicm · 11 years ago
- 9f33089 Fix previous not to leak fd on failure, whoops. by nicm · 11 years ago
- 3d8a8ea Use open(".")/fchdir() to save and restore current directory rather than by nicm · 11 years ago
- e323101 Rename global configuration define. by Nicholas Marriott · 12 years ago
- 7f9b225 Call setlocale(LC_TIME) at startup. by Nicholas Marriott · 12 years ago
- 7f63658 Add TMUX_TMPDIR variable to put the socket directory outside by Nicholas Marriott · 12 years ago
- 6fee3e9 Rename session idx to session id throughout and add $ prefix to targets by Nicholas Marriott · 12 years ago
- 20636d9 Add a command queue to standardize and simplify commands that call other by Nicholas Marriott · 12 years ago
- 9b8998a Correctly aggregate together errors from nested config files (with by Nicholas Marriott · 12 years ago
- d762ced Call realpath earlier on the socket directory path rather than on the by Nicholas Marriott · 12 years ago
- df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
- 2942eca Add a skeleton mode to tmux (called "control mode") that let's tmux by Nicholas Marriott · 12 years ago
- 021e95b Do not use stderr for log file and don't call log_close when not needed. by Nicholas Marriott · 12 years ago
- 196710e Simplify logging and just fprintf(stderr, ...) for early errors. by Nicholas Marriott · 13 years ago
- 535286c Drop the ability to have a list of keys in the prefix in favour of two by Nicholas Marriott · 13 years ago
- 7ff4cf9 Try to resolve relative paths for loadb and saveb (first using client by Nicholas Marriott · 13 years ago
- b32254a Ignore LC_ALL and LC_CTYPE if they are empty as well as unset. by Nicholas Marriott · 13 years ago
- e6a59c4 Reject $SHELL if it is not a full path. by Nicholas Marriott · 13 years ago
- d5ed5fb Two fixes by Micah Cowan: make mouse work properly beyond >127 on signed by Nicholas Marriott · 14 years ago