1. 97fef89 Rework the prefix-time stuff. The option is now call repeat-time and defaults to 500 ms. However, it only applies to a small subset of commands, currently: up-pane, down-pane, next-window, previous-window, resize-pane-up, resize-pane-down. These are the commands for which it is obviously useful, having it for everything else was just bloody annoying. by Nicholas Marriott · 16 years ago
  2. b4ac8c1 Multiple window splitting. by Nicholas Marriott · 16 years ago
  3. f855591 kill-pane command. by Nicholas Marriott · 16 years ago
  4. 60bfaf5 prefix-time option to allow multiple commands without additional prefixes. by Nicholas Marriott · 16 years ago
  5. 20957e3 Skip over now-invalid fds properly when a window is closed. by Nicholas Marriott · 16 years ago
  6. 7cd3cf0 Make the window pane code handle panes of different sizes, and add a -l and -p arguments to split-window to specify the new window size in lines or as a percentage. by Nicholas Marriott · 16 years ago
  7. 162bacd Window splitting. Two vertical panes fixed 50% each. This is a huge diff, still a couple of bugs (notably heap corruption somewhere causing segfault on exit). by Nicholas Marriott · 16 years ago
  8. e3feb06 Server locking. set-password and lock-server commands, plus automatic locking. by Nicholas Marriott · 16 years ago
  9. 4d71164 Pick up cwd from environment,. by Nicholas Marriott · 16 years ago
  10. 88ab74a Clock mode. by Nicholas Marriott · 16 years ago
  11. a1b43fa Trim spaces. by Nicholas Marriott · 16 years ago
  12. fb6c8ec New command, server-info, to show server info + terminal details. Also tweak term stuff a bit. by Nicholas Marriott · 16 years ago
  13. d531dbb Minor tidying; remove some old debugging messages. by Nicholas Marriott · 16 years ago
  14. 9cddd79 Prompt history. by Nicholas Marriott · 16 years ago
  15. 3bc3f63 Don't bother waking up when nothing is attached. by Nicholas Marriott · 16 years ago
  16. 7a82e86 Make window options work the same was as session options, add mode-fg/mode-bg options, force -g for global on set/show/setw/showw/ by Nicholas Marriott · 16 years ago
  17. d0342f4 Ability to show window title on status line. by Nicholas Marriott · 16 years ago
  18. 4e4aefa Don't try to redraw status line in prompt mode. by Nicholas Marriott · 16 years ago
  19. 9e57336 Style tweaks. by Nicholas Marriott · 16 years ago
  20. 62457bc Trim. by Nicholas Marriott · 16 years ago
  21. efe5573 Internal screen data rewrite for better 256 colour/UTF-8 support. by Nicholas Marriott · 16 years ago
  22. f07cedf Rename some functions. by Nicholas Marriott · 16 years ago
  23. 4235ddb Initial 256 colour support, lightly tested. by Nicholas Marriott · 16 years ago
  24. 33aa931 Support OS X by moving to gettimeofday(2) and adding poll compat from OpenSSH. by Nicholas Marriott · 16 years ago
  25. d90d646 Zombie windows, requested by Will Maier. by Nicholas Marriott · 16 years ago
  26. c24d849 Split options into a table to allow abbreviations. by Nicholas Marriott · 16 years ago
  27. c4d09c0 Convert 0x70 -> 0x88. by Nicholas Marriott · 16 years ago
  28. 4e4f71f Swap in new paste buffer code and add a couple more commands. by Nicholas Marriott · 16 years ago
  29. 17fde82 Freeze output when showing display line, fixes problems when no status line. by Nicholas Marriott · 16 years ago
  30. e9000e4 Wake up every 100 ms instead of 500. Add note. by Nicholas Marriott · 16 years ago
  31. 73d1558 status-lines -> status, prefix-key -> prefix by Nicholas Marriott · 16 years ago
  32. c3b7a49 Editable prompt. Not used for anything yet. More to come. by Nicholas Marriott · 16 years ago
  33. 9ef5bdc Show status messages without blocking the server. by Nicholas Marriott · 16 years ago
  34. 99df48d Trimify. by Nicholas Marriott · 16 years ago
  35. 19b7946 Start of Solaris port. by Nicholas Marriott · 16 years ago
  36. 8873c79 Set window title to current session. New options set-titles to disable. by Nicholas Marriott · 16 years ago
  37. 0ede634 s can be NULL, check for it. by Nicholas Marriott · 16 years ago
  38. 557b6b8 Add a couple of extra option types, and implement show-options command. by Nicholas Marriott · 16 years ago
  39. 0f40347 New window options: force-width and force-height. This will force a window to by Nicholas Marriott · 16 years ago
  40. 62d7ad2 Clear blank area properly on redraw, and add a marker line below it. by Nicholas Marriott · 16 years ago
  41. d00914f Set socket mode +x if sessions attached. by Nicholas Marriott · 16 years ago
  42. 2a2a976 Read from pipe to allow client to confirm and socket be closed. by Nicholas Marriott · 16 years ago
  43. d51f075 Use a socketpair to synchronise server startup. by Nicholas Marriott · 16 years ago
  44. 9580695 Clear clients with flag too. by Nicholas Marriott · 16 years ago
  45. 77224aa Be more conservative about redrawing using flags. by Nicholas Marriott · 16 years ago
  46. 713bad0 Make status-interval actually changeable. by Nicholas Marriott · 16 years ago
  47. 3cd4a08 Make server exit when last session dies. Also fix window check for status activity redraw. by Nicholas Marriott · 16 years ago
  48. 6a187bb Some Linux fixes; some code tidying. Don't redraw status bar so often. by Nicholas Marriott · 16 years ago
  49. 0f95671 Disable/enable window activity monitoring with set-window-option command. by Nicholas Marriott · 16 years ago
  50. 14b9512 Add activity monitoring, also invert items on taskbar which have activity. by Nicholas Marriott · 16 years ago
  51. 031be1f Don't crash when looking at NULL clients; also redraw everything on status change. by Nicholas Marriott · 16 years ago
  52. 811e75d Status bar left and right strings (set with status-left and status-right), and automatic update (at interval set by status-interval). by Nicholas Marriott · 16 years ago
  53. 9e6090a Per-session configuration options. by Nicholas Marriott · 16 years ago
  54. 259dcbb Daemonise before loading configuration. by Nicholas Marriott · 16 years ago
  55. a26f58c Last bits of basic configuration file. By default in ~/.tmux.conf or specified with -f. Just a list of tmux commands executed when the server is started and before and any session/window is created. by Nicholas Marriott · 16 years ago
  56. c7243b7 Move -s and -c down a level so handling them is the responsibility of the command (with some helper functions), rather than the top-level. This changes the action command syntax so that -s and -c must be after the command rather than before. by Nicholas Marriott · 16 years ago
  57. 5569ff9 Don't hang when window closes early; also add lots more debugging. by Nicholas Marriott · 16 years ago
  58. 103748d Major reorganisation of screen handling. by Nicholas Marriott · 17 years ago
  59. 6f142e9 Don't try to access more windows if the session has been destroyed. by Nicholas Marriott · 17 years ago
  60. e0383f5 Better error messages with no server. by Nicholas Marriott · 17 years ago
  61. 5cd1d45 Three-stage exit process so that [] message printing works on detach etc. by Nicholas Marriott · 17 years ago
  62. 76c8a59 Big internal reorganisation to move tty control into parent. by Nicholas Marriott · 17 years ago
  63. 9a6e47c Initial history support. by Nicholas Marriott · 17 years ago
  64. 4309d65 realpath the socket path; also sprinkle some const. by Nicholas Marriott · 17 years ago
  65. 08d9f46 Make it build/run on Linux. by Nicholas Marriott · 17 years ago
  66. 941eab3 %u -> %d for indexes. Some lint fixes. by Nicholas Marriott · 17 years ago
  67. 4ba3cf6 Reorg window data structures. Add an intermediate data type (struct winlink) to hold index and make sessions hold a RB tree of them rather than a fixed array. by Nicholas Marriott · 17 years ago
  68. 810a884 A couple of close-on-exec flags. by Nicholas Marriott · 17 years ago
  69. f941d27 Save/restore errno, free pfd buffer. by Nicholas Marriott · 17 years ago
  70. 3859c9f Free/close windows properly. by Nicholas Marriott · 17 years ago
  71. 64713e0 Tweak a couple of variable names. by Nicholas Marriott · 17 years ago
  72. 25e94a0 List client command. by Nicholas Marriott · 17 years ago
  73. cf77c80 FreeBSD's util.h is libutil.h. by Nicholas Marriott · 17 years ago
  74. de24fbb Add a bell-action option. by Nicholas Marriott · 17 years ago
  75. ad4a742 Mark windows in yellow on status line when bell. by Nicholas Marriott · 17 years ago
  76. 5a3b92c -d option to attach. Also fix CC in Makefile and make it build with DEBUG again. by Nicholas Marriott · 17 years ago
  77. 5c54e0b Don't accept UINT_MAX as size if no clients/sessions. by Nicholas Marriott · 17 years ago
  78. 1f9a8e7 Incomplete resize support. by Nicholas Marriott · 17 years ago
  79. 68a5d5c Window attachment, malloc debugging, fix a segfault with no sessions. by Nicholas Marriott · 17 years ago
  80. 8158159 Next/last/previous window, some other tweaks. by Nicholas Marriott · 17 years ago
  81. 7ba01f6 New window command. by Nicholas Marriott · 17 years ago
  82. df716ec Rewrite command handling to be more generic. Not finished! by Nicholas Marriott · 17 years ago
  83. dadc56d Key binding, unbinding. by Nicholas Marriott · 17 years ago
  84. a68b1e5 xcalloc, otherwise prefix may be !0. by Nicholas Marriott · 17 years ago
  85. 9bb907f Move command handling into the server and tidy up some bits. by Nicholas Marriott · 17 years ago
  86. 2ec60c9 Pass bell through from any window. by Nicholas Marriott · 17 years ago
  87. 3fa8f16 Adjust $TMUX environ var to include session index, and don't compact session list on release. Also fix some argument types. by Nicholas Marriott · 17 years ago
  88. 302a35d Server function naming, still not happy with server stuff though. by Nicholas Marriott · 17 years ago
  89. fb39b22 Cleanup part II: split up client stuff and ops. More to come. by Nicholas Marriott · 17 years ago
  90. 671694a Cleanup part 1: split up server.c. by Nicholas Marriott · 17 years ago
  91. 3fef2d9 Window list with C-b W. by Nicholas Marriott · 17 years ago
  92. 1fefbb7 Pass through backspace for now. by Nicholas Marriott · 17 years ago
  93. 34f87e5 Last window option. by Nicholas Marriott · 17 years ago
  94. 12f7197 session_flush can go bye-bye again. by Nicholas Marriott · 17 years ago
  95. 4381446 Flush even detached sessions. by Nicholas Marriott · 17 years ago
  96. 04f4e42 Change command format. by Nicholas Marriott · 17 years ago
  97. 6e210bb If a session is destroyed, safely kill all other clients attached to it. by Nicholas Marriott · 17 years ago
  98. 7000277 Don't try to upadte window after free. by Nicholas Marriott · 17 years ago
  99. 85770bc Use $SHELL for new shell, if set. by Nicholas Marriott · 17 years ago
  100. 4b62b1d Sync with fdm. by Nicholas Marriott · 17 years ago