1. cba338a Keys in status line (p in vi mode, M-y in emacs) to paste the first line of the upper paste buffer. Suggested by Dan Colish. by Nicholas Marriott · 16 years ago
  2. 96ca072 clear-history command. by Nicholas Marriott · 16 years ago
  3. c8cf438 Rename all feature flags to HAVE_* and move out of makefiles into a configure by Nicholas Marriott · 16 years ago
  4. 792aeb9 Use getopt.c from openssh rather than OpenBSD's getopt_long. by Nicholas Marriott · 16 years ago
  5. 143aa71 Space trimmage mega-diff. by Nicholas Marriott · 16 years ago
  6. fb543c7 Use ACS for line drawing characters. by Nicholas Marriott · 16 years ago
  7. 9164dd6 Only worry about complete seconds for status line update. Also reduce poll interval and de-magic-number it. by Nicholas Marriott · 16 years ago
  8. 044e6f7 previous-layout command. by Nicholas Marriott · 16 years ago
  9. a6f2d82 Use a (pre)randomised binary tree for UTF-8 character widths. Probably overkill by Nicholas Marriott · 16 years ago
  10. a583bbb Display the layout name in window lists. by Nicholas Marriott · 16 years ago
  11. cdf472f Merge resize-pane-{up,down} into resize-pane. by Nicholas Marriott · 16 years ago
  12. cc9cc1a Some tweaks for Solaris. by Nicholas Marriott · 16 years ago
  13. f0a716f Use a u_char so top-bit-set update the cursor as well. by Nicholas Marriott · 16 years ago
  14. 5d1b688 Convert hidden flag to a full flags word for the status line and add a flag to by Nicholas Marriott · 16 years ago
  15. d8a35ff Perform some black and midnight cpp witchcraft to get rid of GRID_DEBUG, to fix by Nicholas Marriott · 16 years ago
  16. 058772e - confirm-before command. by Tiago Cunha · 16 years ago
  17. 5fbdca8 Use the xenl terminfo flag to detect early-wrap terminals like the FreeBSD by Nicholas Marriott · 16 years ago
  18. 325d43e rotate-window command. by Nicholas Marriott · 16 years ago
  19. 8216f7b swap-pane command. by Nicholas Marriott · 16 years ago
  20. dbf52fa Change scroll/pane redraws to only redraw the single pane affected rather than by Nicholas Marriott · 16 years ago
  21. 84cde92 If redrawing the region would mean redrawing > half the pane, just schedule to by Nicholas Marriott · 16 years ago
  22. 91bc683 - Allow switching to hidden windows (for active-only layout). by Nicholas Marriott · 16 years ago
  23. b6450b1 Basic horizontal splitting and layout management. Still some redraw and other by Nicholas Marriott · 16 years ago
  24. d13add8 More AIX tweaks. by Nicholas Marriott · 16 years ago
  25. 23fef99 8 -> UTF8_SIZE. by Nicholas Marriott · 16 years ago
  26. cf7b384 Better UTF-8 support, including combined characters. Unicode data is now stored by Nicholas Marriott · 16 years ago
  27. 34dd72f _fill functions are no longer needed. Nuke them. by Nicholas Marriott · 16 years ago
  28. abf170d Whoops. Missed a few changes. by Nicholas Marriott · 16 years ago
  29. 6c0728f Step 2 of the Grand Plan To Make UTF-8 Better. by Nicholas Marriott · 16 years ago
  30. 989d67c struct grid_data -> struct grid. Stage 1 of the Grand Plan To Make UTF-8 Better. by Nicholas Marriott · 16 years ago
  31. cb2ac5c Key repeating is now a property of the key binding not of the command. Repeat by Nicholas Marriott · 16 years ago
  32. 587bade Clear using ED when redrawing the screen. I foolishly assumed using spaces by Nicholas Marriott · 16 years ago
  33. a7f5777 Not const. by Nicholas Marriott · 16 years ago
  34. f6001f9 Whoops. Didn't mean to commit this yet. by Nicholas Marriott · 16 years ago
  35. b97264b Update TODO. by Nicholas Marriott · 16 years ago
  36. be0c79f Sockets in /tmp are now created in a subdirectory named, tmux-UID, eg by Nicholas Marriott · 16 years ago
  37. f5f04a9 * New session flag "set-remain-on-exit" to set remain-on-exit flag for new windows created in that session (like "remain-by-default" used to do). Not perfectly happy about this, but until I can think of a good way to introduce it generically (maybe a set of options in the session) this will do. Fixes SF request 2527847. by Nicholas Marriott · 16 years ago
  38. e6d35b6 Support for 88 colour terminals. by Nicholas Marriott · 16 years ago
  39. 56f80a5 break-pane command to split a pane off into a new window; bound to ! by default. by Nicholas Marriott · 16 years ago
  40. 65b9aeb Put socket path in $TMUX. by Nicholas Marriott · 16 years ago
  41. 1712560 Extra function keys from Dashing dashing at hushmail dot com by Nicholas Marriott · 16 years ago
  42. 57f5f44 Sort out escape key handling so it works. by Nicholas Marriott · 16 years ago
  43. afd67ce Allow selection in vi mode. by Nicholas Marriott · 16 years ago
  44. 95c8c04 Redo mode keys slightly more cleanly and apply them to command prompt editing. vi or emacs mode is controlled by the session option status-keys. by Nicholas Marriott · 16 years ago
  45. 0450b4a Move status prompt/message init and teardown into status.c. by Nicholas Marriott · 16 years ago
  46. cce03e1 Looking up argv[0] is expensive, so just use p_comm for the window name which is good enough. Also increase name update time to 500 ms. by Nicholas Marriott · 16 years ago
  47. 959eeef FreeBSD's console wraps lines at $COLUMNS - 1 rather than $COLUMNS (the cursor can never be beyond $COLUMNS - 1) and does not appear to support changing this behaviour, or any of the obvious possibilities (turning off right margin wrapping, insert mode). This is irritating, most notably because it impossible to write to the very bottom-right of the screen without scrolling. To work around this, if built on FreeBSD and run with a "cons" $TERM, the bottom-right cell on the screen is omitted. by Nicholas Marriott · 16 years ago
  48. 6c76aac Lose unnecessary cursor restores, fix a couple of placement bugs and remove unused CR. by Nicholas Marriott · 16 years ago
  49. 03d531e Move sx,sy into tty rather than client. by Nicholas Marriott · 16 years ago
  50. 514fe11 We are going to need the updated screen data for emulating the scroll region, by Nicholas Marriott · 16 years ago
  51. 91c9d95 Change tty_cmd_* to use a window_pane. by Nicholas Marriott · 16 years ago
  52. e444b0b Split most of tty_cmd_cell off to tty_cell. First step on making tty_cmd_* take by Nicholas Marriott · 16 years ago
  53. c6be7d3 Simplify screen/tty write code to eliminate function pointer which is now by Nicholas Marriott · 16 years ago
  54. b373993 Don't redraw status line unless it has actually changed. Stops extraneous by Nicholas Marriott · 16 years ago
  55. c9cfc9a Don't try to change the window name unless the pid of the process chosen has by Nicholas Marriott · 16 years ago
  56. 9d90d9a Increase name refresh interval to 250 ms to reduce CPU use. by Nicholas Marriott · 16 years ago
  57. 62d2ab3 Continue process if suspended. by Nicholas Marriott · 16 years ago
  58. 4213ff8 copy-buffer command. by Tiago Cunha · 16 years ago
  59. 882316a Set colour of window entry in status line based on window options. by Nicholas Marriott · 16 years ago
  60. 2bf9f49 Undo this and just shut lint up. by Nicholas Marriott · 16 years ago
  61. 6ad0d2a Nuke debugging. by Nicholas Marriott · 16 years ago
  62. 4428987 * Better support for at least the most common variant of mouse input: parse it and adjust for different panes. Also support mouse in window/session choice mode. by Nicholas Marriott · 16 years ago
  63. 2af5244 -u to start with screen scrolled up. by Nicholas Marriott · 16 years ago
  64. c172628 Handle cursor on/off better. by Nicholas Marriott · 16 years ago
  65. c6bd9e2 Allow status, mode and message attributes to be changed by three new options: status-attr, mode-attr, message-attr. A comma-separataed list is accepted containing: bright, dim, underscore, blink, reverse, hidden, italics, for example: set -g status-attr bright,blink by Nicholas Marriott · 16 years ago
  66. 9cde0c2 Be more clever about picking window name. by Nicholas Marriott · 16 years ago
  67. f62ed6a load-buffer command by Tiago Cunha · 16 years ago
  68. d60ad6f Make the caller responsible for allocating memory for the paste buffer data by Tiago Cunha · 16 years ago
  69. 4d9af27 Better error messages for fork. by Nicholas Marriott · 16 years ago
  70. 392e135 Handle SIGTERM (and kill-server which uses it), a bit more neatly - tidy up by Nicholas Marriott · 16 years ago
  71. 19987fe Bring back -p and -l to splitw to specify height as % or nlines. by Nicholas Marriott · 16 years ago
  72. 2d15f59 Try to change the window title to match the command running it in. This is done by Nicholas Marriott · 16 years ago
  73. 5e55b28 Bump protocol. by Nicholas Marriott · 16 years ago
  74. 93230a6 Pass return code from _exec; allow command sequences to work from the command line. by Nicholas Marriott · 16 years ago
  75. 5f6a351 Start the first client with a special socketpair so it is already known to the by Nicholas Marriott · 16 years ago
  76. 4cdc228 Unbreak UTF-8. by Nicholas Marriott · 16 years ago
  77. d1a5fde -a flags to next/previous window. by Nicholas Marriott · 16 years ago
  78. 3efd1f5 find-window command. by Nicholas Marriott · 16 years ago
  79. a15f8fc Support command sequences separated by " ; ". Also clean up command printing. by Nicholas Marriott · 16 years ago
  80. 8ea4971 suspend-client command and suspend client when ^Z key binding is used. by Nicholas Marriott · 16 years ago
  81. ff61eee Don't use [4] since they are confusing and use the right size for memset. DOH. by Nicholas Marriott · 16 years ago
  82. d29ca39 Two new commands, choose-window and choose-session which work only when bound to a key and allow the window or session to be selected from a list. by Nicholas Marriott · 16 years ago
  83. 78c9675 Rename some flags I'm not happy about. by Nicholas Marriott · 16 years ago
  84. 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
  85. d1eb153 switch-pane is now select-pane. by Nicholas Marriott · 16 years ago
  86. 3f51dcd up-pane and down-pane commands. by Nicholas Marriott · 16 years ago
  87. b4ac8c1 Multiple window splitting. by Nicholas Marriott · 16 years ago
  88. f855591 kill-pane command. by Nicholas Marriott · 16 years ago
  89. 60bfaf5 prefix-time option to allow multiple commands without additional prefixes. by Nicholas Marriott · 16 years ago
  90. a88eba3 More hacks for key handling. by Nicholas Marriott · 16 years ago
  91. c35a50b Commands to resize panes; also a pane generic cmd, not used yet. by Nicholas Marriott · 16 years ago
  92. 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
  93. 6897510 Codes no longer needed. by Nicholas Marriott · 16 years ago
  94. 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
  95. d78bc5d save-buffer command, from Tiago Cunha. by Nicholas Marriott · 16 years ago
  96. e3feb06 Server locking. set-password and lock-server commands, plus automatic locking. by Nicholas Marriott · 16 years ago
  97. ee0a7cd Restore emulation of ich with insert mode. by Nicholas Marriott · 16 years ago
  98. 4d71164 Pick up cwd from environment,. by Nicholas Marriott · 16 years ago
  99. 88ab74a Clock mode. by Nicholas Marriott · 16 years ago
  100. 8253e68 Oops, missed from btab commit. by Nicholas Marriott · 16 years ago