1. ed3cfaa Make shell_command a global like other stuff rather than making it an by nicm · 7 years ago
  2. 42285ac Try C.UTF-8 which is also a commonly useful locale on some platforms, by nicm · 7 years ago
  3. ae1a6c2 Do not need getopt.h. by nicm · 7 years ago
  4. 87997ef Use fdforkpty() instead of our own unwrapped versions. by nicm · 7 years ago
  5. 689f4bf Style nits and a missing cast. by nicm · 8 years ago
  6. d566c78 Memory leak, from David CARLIER. by nicm · 8 years ago
  7. 04e17a7 Use uid_t for UID not u_int. by nicm · 8 years ago
  8. 8b8d096 Style nits. by nicm · 8 years ago
  9. 98e7fbb Open /dev/ptm before pledge() and save it to be used for PTMGET later by nicm · 8 years ago
  10. 2b0bc9f Major tidy up and rework of options tree and set-option/show-options by nicm · 8 years ago
  11. 24cba59 Simplify appending to string options. by nicm · 8 years ago
  12. bee95bf Spacing nits. by nicm · 8 years ago
  13. e454018 Add static in window-*.c and move some internal functions out of tmux.h. by nicm · 8 years ago
  14. c426e48 Loads more static, except for cmd-*.c and window-*.c. by nicm · 8 years ago
  15. fcb00a4 Use getprogname() instead of __progname to make portability easier. by nicm · 8 years ago
  16. 9f04578 Fix up a couple of long lines. by nicm · 8 years ago
  17. 0d6de44 If setlocale("en_US.UTF-8") succeeds, then don't do the check for UTF-8 by nicm · 9 years ago
  18. 1f0b317 Although we always have en_US.UTF-8 on OpenBSD, some platforms do not, by nicm · 9 years ago
  19. e647eeb Remove unused variables, from Michal Mazurek. by nicm · 9 years ago
  20. 26945d7 Use system wcwidth() instead of carrying around UTF-8 width tables. by nicm · 9 years ago
  21. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  22. d2fb0ef Add hooks infrastructure, basic commands (set-hook, show-hooks) and a by nicm · 9 years ago
  23. 62d3af1 Make environ_set va_args and use it to tidy up some calls. Also add a by nicm · 9 years ago
  24. 3ff46b2 Shell command from -c doesn't have to be global, pass it as an argument. by nicm · 9 years ago
  25. c913fb9 Tidy the code that works out the socket path, and just use the full path by nicm · 9 years ago
  26. 8976dac Remove malloc_options DEBUG bit. by nicm · 9 years ago
  27. 1e2df2d Remove the -I part of show-messages which isn't really that useful; the by nicm · 9 years ago
  28. 9cccb8c Make the log stuff a bit tidier with some helper functions. by nicm · 9 years ago
  29. 01a2ddf Add getpw to pledge, makes tmux work in YP environments, discovered by by nicm · 9 years ago
  30. fce56c5 Instead of separate tables for different types of options, give each by nicm · 9 years ago
  31. a582b62 Accidentally turned off pledge, turn it back on. by nicm · 9 years ago
  32. c56b81a Push stdout and stderr to clients more aggressively, and add an event to by nicm · 9 years ago
  33. 0cc812a tmux is UTF-8, so if $TMUX is set (tmux running in tmux), the client is by nicm · 9 years ago
  34. 1b86f52 Nuke the utf8 and status-utf8 options and make tmux only a UTF-8 by nicm · 9 years ago
  35. 00c34df Drop mouse-utf8 option and always turn on UTF-8 mouse if the client says by nicm · 9 years ago
  36. bf9c933 Like options, move the environ struct into environ.c. by nicm · 9 years ago
  37. 44657bf Move struct options into options.c. by nicm · 9 years ago
  38. 07b0ea0 Break the common process set up, event loop and imsg dispatch code by nicm · 9 years ago
  39. 3034a71 Let's see if anyone screams about not being able to specify $TMPDIR by deraadt · 9 years ago
  40. 5383b04 tmux can call pledge() in main with large set and then reduce it by nicm · 9 years ago
  41. 216ddf3 Move tzset() from log_open to main. by nicm · 9 years ago
  42. 82326dc A couple of style nits. by nicm · 9 years ago
  43. 952ba84 Work out config file when needed not at startup. by nicm · 9 years ago
  44. 6a539c0 Path from $TMUX does not need to be global anymore. by nicm · 9 years ago
  45. c6e9160 Login shell can be a client flag, and move the exec code into client.c. by nicm · 9 years ago
  46. dd92b6e Event base does not need to be global. by nicm · 9 years ago
  47. b87dc60 Some style nits and dead assignments. by nicm · 9 years ago
  48. 92af376 Add an option (history-file) for a file to save/restore command prompt by nicm · 9 years ago
  49. dc0d34e tweak SYNOPSIS and usage(); by jmc · 9 years ago
  50. d451502 Make a tmux-%u directory under TMUX_TMPDIR, like TMPDIR. by nicm · 10 years ago
  51. 900f6fc Tidy up some includes. by nicm · 10 years ago
  52. 2740490 Remove the "info" message mechanism, this was only used for about five by nicm · 11 years ago
  53. 48478ea Remove log_debug2 as well and simplify log.c. by nicm · 11 years ago
  54. 81db6ba Leftovers from removing 88 colour support, from Theo Buehler. by nicm · 11 years ago
  55. 938768e Do not attempt to read .tmux.conf if we can't figure out a home by nicm · 11 years ago
  56. adc1f21 Three small changes from Tiago Cunha: by nicm · 11 years ago
  57. c1ccefc We accidentally haven't been using $TMUX to work out the session for a by nicm · 11 years ago
  58. 282c5f9 Alter how tmux handles the working directory to internally use file by nicm · 11 years ago
  59. eb26dbd Merge IDENTIFY_* flags with CLIENT_* flags. by nicm · 11 years ago
  60. e4dc156 Don't treat TMUX_TMPDIR as a potential file by nicm · 11 years ago
  61. 9f33089 Fix previous not to leak fd on failure, whoops. by nicm · 11 years ago
  62. 3d8a8ea Use open(".")/fchdir() to save and restore current directory rather than by nicm · 11 years ago
  63. e323101 Rename global configuration define. by Nicholas Marriott · 11 years ago
  64. 7f9b225 Call setlocale(LC_TIME) at startup. by Nicholas Marriott · 12 years ago
  65. 7f63658 Add TMUX_TMPDIR variable to put the socket directory outside by Nicholas Marriott · 12 years ago
  66. 6fee3e9 Rename session idx to session id throughout and add $ prefix to targets by Nicholas Marriott · 12 years ago
  67. 20636d9 Add a command queue to standardize and simplify commands that call other by Nicholas Marriott · 12 years ago
  68. 9b8998a Correctly aggregate together errors from nested config files (with by Nicholas Marriott · 12 years ago
  69. d762ced Call realpath earlier on the socket directory path rather than on the by Nicholas Marriott · 12 years ago
  70. df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
  71. 2942eca Add a skeleton mode to tmux (called "control mode") that let's tmux by Nicholas Marriott · 12 years ago
  72. 021e95b Do not use stderr for log file and don't call log_close when not needed. by Nicholas Marriott · 12 years ago
  73. 196710e Simplify logging and just fprintf(stderr, ...) for early errors. by Nicholas Marriott · 12 years ago
  74. 535286c Drop the ability to have a list of keys in the prefix in favour of two by Nicholas Marriott · 13 years ago
  75. 7ff4cf9 Try to resolve relative paths for loadb and saveb (first using client by Nicholas Marriott · 13 years ago
  76. b32254a Ignore LC_ALL and LC_CTYPE if they are empty as well as unset. by Nicholas Marriott · 13 years ago
  77. e6a59c4 Reject $SHELL if it is not a full path. by Nicholas Marriott · 13 years ago
  78. d5ed5fb Two fixes by Micah Cowan: make mouse work properly beyond >127 on signed by Nicholas Marriott · 14 years ago
  79. b802304 Set $TMUX without the session when background jobs are run. by Nicholas Marriott · 14 years ago
  80. b3438c8 Use TMPDIR if set, from Han Boetes. by Nicholas Marriott · 14 years ago
  81. 69cb1f8 Move all calls to fcntl(...O_NONBLOCK) into a function and clear the by Nicholas Marriott · 14 years ago
  82. ac3b78a Support for UTF-8 mouse input (\033[1005h). This was added in xterm 262 by Nicholas Marriott · 14 years ago
  83. 3e81240 Move the user-visible parts of all options (names, types, limit, default by Nicholas Marriott · 14 years ago
  84. cc42614 Change from a per-session stack of buffers to one global stack which is by Nicholas Marriott · 14 years ago
  85. c198664 Add other-pane-height and other-pane-width options, allowing the width by Nicholas Marriott · 14 years ago
  86. 1f18523 In the built-in layouts, distribute the panes more evenly. Set the by Nicholas Marriott · 14 years ago
  87. e26a351 Add an option to alert (monitor) for silence (lack of activity) in a by Nicholas Marriott · 14 years ago
  88. ebd0eb4 If VISUAL or EDITOR contains "vi", configure mode-keys and status-keys to vi. by Nicholas Marriott · 14 years ago
  89. e4e7286 Add XAUTHORITY to update-environment, requested by Andreas Kloeckner. by Nicholas Marriott · 14 years ago
  90. 248fb14 Merge the before and after attach client code into one in client.c by Nicholas Marriott · 14 years ago
  91. 3195433 Make stdio blocking again before calling shell command with -c. by Nicholas Marriott · 14 years ago
  92. f56b4ec Trying to set FD_CLOEXEC on every fd is a lost cause, just use by Nicholas Marriott · 14 years ago
  93. 65ff5b0 Use an explicit event rather than event_once for the main event so it by Nicholas Marriott · 14 years ago
  94. 9a7cde0 Two new options: by Nicholas Marriott · 14 years ago
  95. e3be9b1 Do not call event_del() for signals after fork(), just use sigaction() by Nicholas Marriott · 14 years ago
  96. 4274a7e switch back to kqueue for now, since (a) kqueue has been fixed to deal by Theo Deraadt · 14 years ago
  97. bf09b00 kqueue(2) is currently broken when used with /dev/null and a few other devices. by Nicholas Marriott · 14 years ago
  98. b9c873c Return the command client return code with MSG_EXIT now that MSG_ERROR and by Nicholas Marriott · 14 years ago
  99. 76bbdeb Send all three of stdin, stdout, stderr from the client to the server, so that by Nicholas Marriott · 14 years ago
  100. 07a71fd Store the current working directory in the session, change the default-path by Nicholas Marriott · 14 years ago