1. 8378be0 Fix argument order in a log statement. by Nicholas Marriott · 12 years ago
  2. 827b311 Use a utility function for common code to show errors in config file, by Nicholas Marriott · 12 years ago
  3. df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
  4. 6703ca8 Stop accepting new clients for 1 second on EMFILE/ENFILE. Based on by Nicholas Marriott · 13 years ago
  5. ac9ebc2 Use a lock file and flock() to serialize server start, avoids problems by Nicholas Marriott · 13 years ago
  6. 808502a Give each pane created in a tmux server a unique id (starting from 0), by Nicholas Marriott · 14 years ago
  7. 4dfb29f Use LIST_* not SLIST_*. by Nicholas Marriott · 14 years ago
  8. 69cb1f8 Move all calls to fcntl(...O_NONBLOCK) into a function and clear the by Nicholas Marriott · 14 years ago
  9. 04b32fa Don't reset the activity timer for unattached sessions every second, by Nicholas Marriott · 14 years ago
  10. cc42614 Change from a per-session stack of buffers to one global stack which is by Nicholas Marriott · 14 years ago
  11. acf13ce Store sessions in an RB tree by name rather than a list, this is tidier by Nicholas Marriott · 14 years ago
  12. 248fb14 Merge the before and after attach client code into one in client.c by Nicholas Marriott · 14 years ago
  13. f56b4ec Trying to set FD_CLOEXEC on every fd is a lost cause, just use by Nicholas Marriott · 14 years ago
  14. 9a7cde0 Two new options: by Nicholas Marriott · 14 years ago
  15. 6615201 Modify the permissions on the socket when adding or removing +x to show by Nicholas Marriott · 14 years ago
  16. e3be9b1 Do not call event_del() for signals after fork(), just use sigaction() by Nicholas Marriott · 14 years ago
  17. 4274a7e switch back to kqueue for now, since (a) kqueue has been fixed to deal by Theo Deraadt · 14 years ago
  18. bf09b00 kqueue(2) is currently broken when used with /dev/null and a few other devices. by Nicholas Marriott · 14 years ago
  19. ad466a6 Give tmux sockets (but not the containing folder) group by Nicholas Marriott · 14 years ago
  20. c4a2fdf Put this back in with the initialisation in the right order. by Nicholas Marriott · 14 years ago
  21. af5e0bd Revert last change, it appears to be broken somehow. by Nicholas Marriott · 14 years ago
  22. ec1d37b Make signal handler setup/teardown two common functions instead of six, by Nicholas Marriott · 14 years ago
  23. ac9daf9 Merge copy mode and output mode, dropping the latter. Idea and code from by Nicholas Marriott · 15 years ago
  24. 509ce7f Nuke unused variable. by Nicholas Marriott · 15 years ago
  25. 4651180 Use the array.h code for the causes list. by Nicholas Marriott · 15 years ago
  26. 8aba77b Instead of bailing out on the first configuration file error, carry on, by Nicholas Marriott · 15 years ago
  27. 65c9004 Ignore SIGHUP as well. by Nicholas Marriott · 15 years ago
  28. 15a64b8 Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last by Nicholas Marriott · 15 years ago
  29. 459e9de Close the pane if the process died due to a signal, not just if it exited by Nicholas Marriott · 15 years ago
  30. 4ca857e Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to by Nicholas Marriott · 15 years ago
  31. 8e47966 Destroy panes immediately rather than checking them all every loop. by Nicholas Marriott · 15 years ago
  32. 08a8ccf Free the pane bufferevent when the fd is closed (the signal could come before by Nicholas Marriott · 15 years ago
  33. 2756437 Only need to chmod +x or -x the socket when a client is created, lost or by Nicholas Marriott · 15 years ago
  34. 25c604f EVLOOP_ONCE takes care of the wakeup, so no need to call event_loopexit(NULL). by Nicholas Marriott · 15 years ago
  35. 38e1394 Now all timers are events, there is no longer any need to wake up every 50 ms - by Nicholas Marriott · 15 years ago
  36. 946ed97 Move status timer check into the global once-per-second timer, this could maybe by Nicholas Marriott · 15 years ago
  37. b3c4956 Don't reenlist the client imsg event every loop, instead have a small function by Nicholas Marriott · 15 years ago
  38. fde36fc Tell the client to exit on configuration file error. by Nicholas Marriott · 15 years ago
  39. a02c7e8 Convert the window pane (pty master side) fd over to use a bufferevent. by Nicholas Marriott · 15 years ago
  40. 06ffed3 Call event_init() before loading the config file, since potentially it could by Nicholas Marriott · 15 years ago
  41. 4d60913 Switch jobs over to use a bufferevent. by Nicholas Marriott · 15 years ago
  42. abf3a5d Initial changes to move tmux to libevent. by Nicholas Marriott · 15 years ago
  43. 5289da2 Change session and client activity and creation time members to have more by Nicholas Marriott · 15 years ago
  44. 992dd86 Reorder slightly to tidy code. by Nicholas Marriott · 15 years ago
  45. 37ffdff Move the poll registration functions into the server-*.c files. by Nicholas Marriott · 15 years ago
  46. ed62d12 tabs are better; ok nicm by Theo Deraadt · 15 years ago
  47. a8b1379 Clear signal flags /before/ taking action and continue afterwards to reduce by Nicholas Marriott · 15 years ago
  48. eddcc3d Split the server code handling clients, jobs and windows off into separate by Nicholas Marriott · 15 years ago
  49. 9294cb0 When a session is unattached, reset its activity timer to prevent it locking by Nicholas Marriott · 15 years ago
  50. 7624599 Similarly add a tty_cursor_pane function to tidy up most of the calls. by Nicholas Marriott · 15 years ago
  51. 972a6f5 _absolute is redundant, just use tty_region. by Nicholas Marriott · 15 years ago
  52. f05b32f Cleanup: use two functions for region setting, one for absolute and one inside by Nicholas Marriott · 15 years ago
  53. 64b5f39 Add a pipe-pane command to allow a pane to be piped to a shell command, for by Nicholas Marriott · 15 years ago
  54. cebc988 Switch run-shell over to queue the command in the background like #(). by Nicholas Marriott · 15 years ago
  55. ff4b4e6 Collect status from dead jobs and don't invoke the callback until both by Nicholas Marriott · 15 years ago
  56. 4bc0f6e Clean up by introducing a wrapper struct for mouse clicks rather than passing by Nicholas Marriott · 15 years ago
  57. f68ade7 Braek some bits out of server_fill_client() that aren't really related to by Nicholas Marriott · 15 years ago
  58. 095ecf2 Put all jobs on a global all_jobs list and use that in server.c instead of by Nicholas Marriott · 15 years ago
  59. 6bca92d Rather than running status-left, status-right and window title #() with popen by Nicholas Marriott · 15 years ago
  60. 4658c06 New option, mouse-select-pane. If on, the mouse may be used to select the by Nicholas Marriott · 15 years ago
  61. 9dd72b9 Add "grouped sessions" which have independent name, options, current window and by Nicholas Marriott · 15 years ago
  62. b7d031c Support for individual session idle time locking. May be enabled by turning off by Nicholas Marriott · 15 years ago
  63. 93b353d Instead of passing a struct pollfd ** around through various functions, build by Nicholas Marriott · 15 years ago
  64. 4ca2200 If no target client is specified to commands which accept one, try to guess the by Nicholas Marriott · 15 years ago
  65. 1764ef8 Don't allow locked or suspended clients to limit the size of active clients. by Nicholas Marriott · 15 years ago
  66. 18ea820 On SIGTERM, just abandon any suspended/locked clients and leave them to it, by Nicholas Marriott · 15 years ago
  67. b01dcd7 Remove the internal tmux locking and instead detach each client and run the by Nicholas Marriott · 15 years ago
  68. 96dd3e8 Permit multiple prefix keys to be defined, separated by commas, for example: by Nicholas Marriott · 15 years ago
  69. 273f1b3 Regularise some fatal messages. by Nicholas Marriott · 15 years ago
  70. 63d499f New option, set-titles-string, to allow the window title to be specified (as by Nicholas Marriott · 15 years ago
  71. f39865e The default terminal size should be 80x24, not 80x25. by Nicholas Marriott · 15 years ago
  72. 8548624 Nuke unused server_client_index function, pointed out by martynas@. by Nicholas Marriott · 15 years ago
  73. 8a873b9 Doh, trim variables unused now. by Nicholas Marriott · 15 years ago
  74. 8cb8a0d Tidy some common code for destroying sessions into a new function. by Nicholas Marriott · 15 years ago
  75. 372a8cb Permit options such as status-bg to be configured using the entire 256 colour by Nicholas Marriott · 15 years ago
  76. 3f3b01c While the display-panes indicator is on screen, make the number keys select the by Nicholas Marriott · 15 years ago
  77. 51c9574 Reference count clients and sessions rather than relying on a saved index for by Nicholas Marriott · 15 years ago
  78. e323f66 Tiny cleanup. by Matthias Kilian · 15 years ago
  79. ffab22b Only redraw all clients once when the backoff timer expires rather than every by Nicholas Marriott · 15 years ago
  80. be0d6fa Tell the user when sleeping due to password backoff. by Nicholas Marriott · 15 years ago
  81. 81a457e When shutting down the server, expect clients to be polite and exit when asked by Nicholas Marriott · 15 years ago
  82. 0431996 Add a new display-panes command, with two options (display-panes-colour and by Nicholas Marriott · 15 years ago
  83. 71ede76 Don't call tty_free unless the client is a terminal, otherwise tty_init hasn't by Nicholas Marriott · 15 years ago
  84. c7394ac When using source-file, run the commands in the context of the source-file by Nicholas Marriott · 15 years ago
  85. c488e5e Whoops, getting the comparison the right way round is usually recommended. by Nicholas Marriott · 15 years ago
  86. fa61746 options_get_number() is relatively expensive and a check for dead panes happens by Nicholas Marriott · 15 years ago
  87. e7cd547 Reset attributes as well as scroll region before poll(2) and add a big comment by Nicholas Marriott · 15 years ago
  88. e0a19ab Initialise log_fd to -1, prevents spurious disconnection of the client when it by Nicholas Marriott · 15 years ago
  89. ff65e37 Drop the no_stop argument to tty_close and tty_free in favour of a flag in the by Nicholas Marriott · 15 years ago
  90. f063571 Switch tmux to use imsg. This is the last major change to make the by Nicholas Marriott · 15 years ago
  91. 181e1bc Reset the attributes after drawing all or part of the screen, and reset the by Nicholas Marriott · 15 years ago
  92. e89e70e If there is an error in the configuration file, don't just exit(1) as this can by Nicholas Marriott · 15 years ago
  93. 8678500 Next step towards customisable mode keys: build each default table of keys into by Nicholas Marriott · 15 years ago
  94. 5a1a106 Permit commands to be bound to key presses without the prefix key first. The by Nicholas Marriott · 15 years ago
  95. 76a9d98 Make some functions which return unused values void (mostly found by lint) and by Nicholas Marriott · 15 years ago
  96. 54afcfb Display the number of failed password attempts (if any) when the server is by Nicholas Marriott · 15 years ago
  97. 6036bdd Improved layout code. by Nicholas Marriott · 15 years ago
  98. fc6a65c Add three new session options: visual-activity, visual-bell, visual-content. If by Nicholas Marriott · 15 years ago
  99. ae2ea52 Instead of faking up a status line in status_redraw, use the same code to by Nicholas Marriott · 15 years ago
  100. 9e49ec6 Creating a key binding which replaces itself (such as "bind x bind x lsw") by Nicholas Marriott · 15 years ago