1. afd67ce Allow selection in vi mode. by Nicholas Marriott · 17 years ago
  2. 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 · 17 years ago
  3. 0450b4a Move status prompt/message init and teardown into status.c. by Nicholas Marriott · 17 years ago
  4. 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 · 17 years ago
  5. 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 · 17 years ago
  6. 6c76aac Lose unnecessary cursor restores, fix a couple of placement bugs and remove unused CR. by Nicholas Marriott · 17 years ago
  7. 03d531e Move sx,sy into tty rather than client. by Nicholas Marriott · 17 years ago
  8. 514fe11 We are going to need the updated screen data for emulating the scroll region, by Nicholas Marriott · 17 years ago
  9. 91c9d95 Change tty_cmd_* to use a window_pane. by Nicholas Marriott · 17 years ago
  10. e444b0b Split most of tty_cmd_cell off to tty_cell. First step on making tty_cmd_* take by Nicholas Marriott · 17 years ago
  11. c6be7d3 Simplify screen/tty write code to eliminate function pointer which is now by Nicholas Marriott · 17 years ago
  12. b373993 Don't redraw status line unless it has actually changed. Stops extraneous by Nicholas Marriott · 17 years ago
  13. c9cfc9a Don't try to change the window name unless the pid of the process chosen has by Nicholas Marriott · 17 years ago
  14. 9d90d9a Increase name refresh interval to 250 ms to reduce CPU use. by Nicholas Marriott · 17 years ago
  15. 62d2ab3 Continue process if suspended. by Nicholas Marriott · 17 years ago
  16. 4213ff8 copy-buffer command. by Tiago Cunha · 17 years ago
  17. 882316a Set colour of window entry in status line based on window options. by Nicholas Marriott · 17 years ago
  18. 2bf9f49 Undo this and just shut lint up. by Nicholas Marriott · 17 years ago
  19. 6ad0d2a Nuke debugging. by Nicholas Marriott · 17 years ago
  20. 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 · 17 years ago
  21. 2af5244 -u to start with screen scrolled up. by Nicholas Marriott · 17 years ago
  22. c172628 Handle cursor on/off better. by Nicholas Marriott · 17 years ago
  23. 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 · 17 years ago
  24. 9cde0c2 Be more clever about picking window name. by Nicholas Marriott · 17 years ago
  25. f62ed6a load-buffer command by Tiago Cunha · 17 years ago
  26. d60ad6f Make the caller responsible for allocating memory for the paste buffer data by Tiago Cunha · 17 years ago
  27. 4d9af27 Better error messages for fork. by Nicholas Marriott · 17 years ago
  28. 392e135 Handle SIGTERM (and kill-server which uses it), a bit more neatly - tidy up by Nicholas Marriott · 17 years ago
  29. 19987fe Bring back -p and -l to splitw to specify height as % or nlines. by Nicholas Marriott · 17 years ago
  30. 2d15f59 Try to change the window title to match the command running it in. This is done by Nicholas Marriott · 17 years ago
  31. 5e55b28 Bump protocol. by Nicholas Marriott · 17 years ago
  32. 93230a6 Pass return code from _exec; allow command sequences to work from the command line. by Nicholas Marriott · 17 years ago
  33. 5f6a351 Start the first client with a special socketpair so it is already known to the by Nicholas Marriott · 17 years ago
  34. 4cdc228 Unbreak UTF-8. by Nicholas Marriott · 17 years ago
  35. d1a5fde -a flags to next/previous window. by Nicholas Marriott · 17 years ago
  36. 3efd1f5 find-window command. by Nicholas Marriott · 17 years ago
  37. a15f8fc Support command sequences separated by " ; ". Also clean up command printing. by Nicholas Marriott · 17 years ago
  38. 8ea4971 suspend-client command and suspend client when ^Z key binding is used. by Nicholas Marriott · 17 years ago
  39. ff61eee Don't use [4] since they are confusing and use the right size for memset. DOH. by Nicholas Marriott · 17 years ago
  40. 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 · 17 years ago
  41. 78c9675 Rename some flags I'm not happy about. by Nicholas Marriott · 17 years ago
  42. 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 · 17 years ago
  43. d1eb153 switch-pane is now select-pane. by Nicholas Marriott · 17 years ago
  44. 3f51dcd up-pane and down-pane commands. by Nicholas Marriott · 17 years ago
  45. b4ac8c1 Multiple window splitting. by Nicholas Marriott · 17 years ago
  46. f855591 kill-pane command. by Nicholas Marriott · 17 years ago
  47. 60bfaf5 prefix-time option to allow multiple commands without additional prefixes. by Nicholas Marriott · 17 years ago
  48. a88eba3 More hacks for key handling. by Nicholas Marriott · 17 years ago
  49. c35a50b Commands to resize panes; also a pane generic cmd, not used yet. by Nicholas Marriott · 17 years ago
  50. 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 · 17 years ago
  51. 6897510 Codes no longer needed. by Nicholas Marriott · 17 years ago
  52. 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 · 17 years ago
  53. d78bc5d save-buffer command, from Tiago Cunha. by Nicholas Marriott · 17 years ago
  54. e3feb06 Server locking. set-password and lock-server commands, plus automatic locking. by Nicholas Marriott · 17 years ago
  55. ee0a7cd Restore emulation of ich with insert mode. by Nicholas Marriott · 17 years ago
  56. 4d71164 Pick up cwd from environment,. by Nicholas Marriott · 17 years ago
  57. 88ab74a Clock mode. by Nicholas Marriott · 17 years ago
  58. 8253e68 Oops, missed from btab commit. by Nicholas Marriott · 17 years ago
  59. 3126332 Support btab. by Nicholas Marriott · 17 years ago
  60. fd05d07 Change server-info format. by Nicholas Marriott · 17 years ago
  61. a1b43fa Trim spaces. by Nicholas Marriott · 17 years ago
  62. fb6c8ec New command, server-info, to show server info + terminal details. Also tweak term stuff a bit. by Nicholas Marriott · 17 years ago
  63. 3ed5aa3 Build array of codes, stop using ncurses global variables and push ncurses crap into tty-term.c. by Nicholas Marriott · 17 years ago
  64. ed1031b Update key handling code. Simplify, support ctrl properly and add a new window option (xterm-keys) to output xterm key codes including ctrl and, if available, alt and shift. by Nicholas Marriott · 17 years ago
  65. 622d4de Give up the farce of caring about any keys aside from the ones in the screen termcap and the ones termcap doesn't handle that we hardcode manually. by Nicholas Marriott · 17 years ago
  66. 4846ad1 Introduce nitems() and use it; use bsearch. by Nicholas Marriott · 17 years ago
  67. 18312fa Some options tidying/code shrinkage. Also add -u option to unset non-global options (allowing them to inherit), and some extra info. by Nicholas Marriott · 17 years ago
  68. 4af8db9 Complete option names as well. by Nicholas Marriott · 17 years ago
  69. 9cddd79 Prompt history. by Nicholas Marriott · 17 years ago
  70. ca1ee21 Switch to splay tree for key bindings. by Nicholas Marriott · 17 years ago
  71. 5445918 source-file command from Tiago Cunha. by Nicholas Marriott · 17 years ago
  72. 75f043f Work around lack of dch. by Nicholas Marriott · 17 years ago
  73. 5c3d973 Import OpenBSD's getopt(3) to workaround broken glibc version. by Nicholas Marriott · 17 years ago
  74. 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 · 17 years ago
  75. d0342f4 Ability to show window title on status line. by Nicholas Marriott · 17 years ago
  76. 8bef3ad Fix build on sparc. by Nicholas Marriott · 17 years ago
  77. cb3f4ed Bump NSETOPTION. by Nicholas Marriott · 17 years ago
  78. 5ca710d Disable UTF-8 by default and add options to enable it. by Nicholas Marriott · 17 years ago
  79. 46f5e42 Keep stack of previous windows. Check for op (orig_pair) for default colours. by Nicholas Marriott · 17 years ago
  80. 4198a9c TAILQ -> SLIST. by Nicholas Marriott · 17 years ago
  81. 6304e23 Record intermediate for p2/s2 and fake up charset redefinition (some programs use it to switch character set). by Nicholas Marriott · 17 years ago
  82. 0ba0fd3 Translate 256 colours to 16. by Nicholas Marriott · 17 years ago
  83. 185f729 Better OSC support for title setting, and support APC as well. by Nicholas Marriott · 17 years ago
  84. 62457bc Trim. by Nicholas Marriott · 17 years ago
  85. df2b3bc Fix stupid GNU getopt behaviour. by Nicholas Marriott · 17 years ago
  86. efe5573 Internal screen data rewrite for better 256 colour/UTF-8 support. by Nicholas Marriott · 17 years ago
  87. f07cedf Rename some functions. by Nicholas Marriott · 18 years ago
  88. ded3480 Split colour functions from screen. by Nicholas Marriott · 18 years ago
  89. 19a2c87 Initial UTF-8 support. by Nicholas Marriott · 18 years ago
  90. d4173e2 Style tweaks. by Nicholas Marriott · 18 years ago
  91. 6674197 Fix bold/non-bold mismatch in 256 colour mode by adding an extra 8 bits (ick) onto the attributes and using two of them to mark the fg and bg as 256 colours when necessary. If only it was 255 colours we would have one value for default and wouln't need this :-/. by Nicholas Marriott · 18 years ago
  92. 4235ddb Initial 256 colour support, lightly tested. by Nicholas Marriott · 18 years ago
  93. 33aa931 Support OS X by moving to gettimeofday(2) and adding poll compat from OpenSSH. by Nicholas Marriott · 18 years ago
  94. 8ed403e Tidy logging and lose stdout hacks for _info. by Nicholas Marriott · 18 years ago
  95. de0e1c6 Lose ensure* stuff. by Nicholas Marriott · 18 years ago
  96. ba597da Environment variables in configuration file. by Nicholas Marriott · 18 years ago
  97. c39c161 Spacing. by Nicholas Marriott · 18 years ago
  98. 3337dfc Support keypad mode, and get rid of SCREEN_DEF*. Meant to commit these separately but forgot :-/. by Nicholas Marriott · 18 years ago
  99. 9721277 Support keypad. Change cursor key output. by Nicholas Marriott · 18 years ago
  100. 892d1b5 Split emacs/vi keys into seperate tables. by Nicholas Marriott · 18 years ago