1. 8e8e0f1 Add missing prototype. by Nicholas Marriott · 14 years ago
  2. f69ce39 When destroying a pane, reset any mode (which reenables pane by Nicholas Marriott · 14 years ago
  3. fc9f082 Can't call event_del() without event_set() first - so call event_set() by Nicholas Marriott · 14 years ago
  4. 5f5104e MSG_EXIT can now have a return code in the message, so check for that by Nicholas Marriott · 14 years ago
  5. e3be9b1 Do not call event_del() for signals after fork(), just use sigaction() by Nicholas Marriott · 14 years ago
  6. c2822ca Do not need to dup() the tty fd sent from the client because it is by Nicholas Marriott · 14 years ago
  7. 828f12b Do not allow duplicate session names to be created, reported by Dominik by Nicholas Marriott · 14 years ago
  8. ae70071 Handle failure to change mode, to avoid dying when switching into copy by Nicholas Marriott · 14 years ago
  9. 3999886 Usage string fixes from Ben Boeckel. by Nicholas Marriott · 14 years ago
  10. cc474b4 Treat trying to link or move to the same window as an error to avoid by Nicholas Marriott · 14 years ago
  11. 8363e31 Change the way backoff works. Instead of stopping reading from the pty by Nicholas Marriott · 14 years ago
  12. 933dc48 Show which pane is active in the list-panes output, suggested by Dominik Honnef. by Nicholas Marriott · 14 years ago
  13. 4274a7e switch back to kqueue for now, since (a) kqueue has been fixed to deal by Theo Deraadt · 14 years ago
  14. 77f9c49 dup() the stdin fd so it isn't closed twice (once for stdin, once for tty). by Nicholas Marriott · 14 years ago
  15. c87187f When changing so that the client passes its stdout and stderr as well as by Nicholas Marriott · 14 years ago
  16. bf09b00 kqueue(2) is currently broken when used with /dev/null and a few other devices. by Nicholas Marriott · 14 years ago
  17. a97b7ad Fix a crash: if remain-on-exit is set and the pane has exited, the by Nicholas Marriott · 14 years ago
  18. 2b80ede Don't return if in the current window since we may want to report a bell by Nicholas Marriott · 14 years ago
  19. 2a0f3f0 Send the \n to stdout with the message, not stderr... doh. by Nicholas Marriott · 14 years ago
  20. a471b5d some escapes i missed; by Jason McIntyre · 14 years ago
  21. 43355fa Make pane/window wrapping more logical (so with 10 windows, +10 from by Nicholas Marriott · 14 years ago
  22. b9c873c Return the command client return code with MSG_EXIT now that MSG_ERROR and by Nicholas Marriott · 14 years ago
  23. b4b9b83 replace some magic mouse constants with defines for clarity. ok nicm by Ted Unangst · 14 years ago
  24. 552c9cd Custom layouts. list-windows command displays the layout as a string (such as by Nicholas Marriott · 14 years ago
  25. 76bbdeb Send all three of stdin, stdout, stderr from the client to the server, so that by Nicholas Marriott · 14 years ago
  26. 07a71fd Store the current working directory in the session, change the default-path by Nicholas Marriott · 14 years ago
  27. 26524c9 New option, detach-on-destroy, to set what happens to a client when the session by Nicholas Marriott · 14 years ago
  28. 34464da Use server_destroy_session() for kill-session. by Nicholas Marriott · 14 years ago
  29. 42e2413 Setting the cmdlist pointer in the bind-key to NULL to prevent it being freed by Nicholas Marriott · 14 years ago
  30. ef72933 Add a choose-buffer command for easier use of the paste buffer stack. by Nicholas Marriott · 14 years ago
  31. 386849e Extend the -t:+ and -t:- window targets for next and previous window to by Nicholas Marriott · 14 years ago
  32. e63f054 Having a list of winlinks->alerts for each session is stupid, just store by Nicholas Marriott · 14 years ago
  33. 447a07e Rename activity->alert in a couple of functions for consistency. by Nicholas Marriott · 14 years ago
  34. ad466a6 Give tmux sockets (but not the containing folder) group by Nicholas Marriott · 14 years ago
  35. 5afb820 Ensure we overwrite UTF-8 wide characters properly, and never overwrite by Nicholas Marriott · 14 years ago
  36. 278d9bc Last change erroneously used the target argument for looking up the by Nicholas Marriott · 14 years ago
  37. 1484eb8 Add a missing command and some missing Ic, from Tiago Cunha. by Nicholas Marriott · 14 years ago
  38. dcc100f Use a macro-based mask for obtaining a key or modifier-set from the by Nicholas Marriott · 14 years ago
  39. 4e3bed2 Couple of missing command aliases/flags, from Tiago Cunha. by Nicholas Marriott · 14 years ago
  40. 510ec3f Fix problems with window sizing seen by Raghavendra D Prabhu when by Nicholas Marriott · 14 years ago
  41. ceed5cc Support the status_replace # replacement sequences in the pipe-pane by Nicholas Marriott · 14 years ago
  42. 0440d32 Shut up gcc4 warnings. by Nicholas Marriott · 14 years ago
  43. 36c0871 This ioctl(TIOCGWINSZ) call is no longer necessary, the result is never by Nicholas Marriott · 14 years ago
  44. b88ec14 Fix binding of C-Space/C-@, from Micah Cowan. by Nicholas Marriott · 14 years ago
  45. cc724f3 Make start-of-line work the same as end-of-line on wrapped lines (jump by Nicholas Marriott · 14 years ago
  46. 43fa9a9 When the mode-mouse option is on, support dragging to make a selection by Nicholas Marriott · 14 years ago
  47. e1e120d Better to say "command key bindings" since we've just called them command keys. by Nicholas Marriott · 15 years ago
  48. 7b73972 There is no real reason not to list all the key bindings here rather by Nicholas Marriott · 15 years ago
  49. 1618f3e Move imsg into libutil and add a man page. by Nicholas Marriott · 15 years ago
  50. c47d66f Rename some imsg bits to make namespace collisions less likely buf to by Nicholas Marriott · 15 years ago
  51. 1e8faaa Don't die if the client has been detached when the job finishes, just by Nicholas Marriott · 15 years ago
  52. 608eef7 Fix an out-of-date comment. by Nicholas Marriott · 15 years ago
  53. 4f5c5b3 Pass in the session, rather than the client, to window modes' key() by Nicholas Marriott · 15 years ago
  54. 0ed727a Enhance paste-buffer to allow lines to be separated by any string, from by Nicholas Marriott · 15 years ago
  55. d911279 Colour+attribute options for status line alerts, from Alex Alexander. by Nicholas Marriott · 15 years ago
  56. 4af4d12 Accept (and document) "none" instead of "default" for attributes as it by Nicholas Marriott · 15 years ago
  57. e5f01fe Use $OpenBSD$. by Nicholas Marriott · 15 years ago
  58. 72d1afa Catch SIGHUP and terminate if running as a client. This prevents clients by Joel Sing · 15 years ago
  59. e0f4697 Identical behaviour to select-prompt can now be obtained with by Nicholas Marriott · 15 years ago
  60. c4a2fdf Put this back in with the initialisation in the right order. by Nicholas Marriott · 15 years ago
  61. af5e0bd Revert last change, it appears to be broken somehow. by Nicholas Marriott · 15 years ago
  62. ec1d37b Make signal handler setup/teardown two common functions instead of six, by Nicholas Marriott · 15 years ago
  63. c919139 Make C-] and other punctuation-based control key combinations work again. by Ryan McBride · 15 years ago
  64. fc09ec3 sort options. by Igor Sobrado · 15 years ago
  65. 99e54f4 Make the active pane border have a green foreground instead of by Nicholas Marriott · 15 years ago
  66. 2240199 Fix crash when resizing in copy mode, when cursor can end up outside screen. by Nicholas Marriott · 15 years ago
  67. 83e1a33 imsg.h does not need sys/tree.h. by Nicholas Marriott · 15 years ago
  68. d529e7e Add a tiled layout, originally from Liam Bedford a while ago, fixed up by me. by Nicholas Marriott · 15 years ago
  69. 6769115 When converting A-Z into a control character, want to subtract 64 not by Nicholas Marriott · 15 years ago
  70. 261b6b8 Mark zombie windows as dead in choose-window list, from Romain Francoise. by Nicholas Marriott · 15 years ago
  71. 3ae1b82 Rewrite key string conversions to be readable and to work properly for by Nicholas Marriott · 15 years ago
  72. 67dd5df Catch SIGCHLD to avoid a zombie, from patrick keshishian. by Nicholas Marriott · 15 years ago
  73. 622593a Fix typo in escape state table leading to fatal() when \033} or \033~ by Nicholas Marriott · 15 years ago
  74. a6d5240 If remain-on-exit is set, both the error callback and a SIGCHLD could by Nicholas Marriott · 15 years ago
  75. 842bc2b Fix use-after-free of the window link when it is part of a grouped by Nicholas Marriott · 15 years ago
  76. a2c86dc Remove XXX comment and just close received fd if calloc() fails. by Nicholas Marriott · 15 years ago
  77. ac9daf9 Merge copy mode and output mode, dropping the latter. Idea and code from by Nicholas Marriott · 15 years ago
  78. f81190a Mention title setting, and the new default. by Nicholas Marriott · 15 years ago
  79. 6704c86 rather than using an empty "" as the default window title, put the hostname by Bob Beck · 15 years ago
  80. 680f920 tweak; by Jason McIntyre · 15 years ago
  81. 089c33f Should be -s for src pane. by Nicholas Marriott · 15 years ago
  82. 46d5c14 Dead assignment, found with clang. by Nicholas Marriott · 15 years ago
  83. b02cd35 Run job commands explicitly in the global enviroment (which can be by Nicholas Marriott · 15 years ago
  84. 7425122 Squash a function that is only called in a callback into the callback function. by Nicholas Marriott · 15 years ago
  85. 56481a4 Don't accept keys with modifiers as input. Fixes crash reported by Brian by Nicholas Marriott · 15 years ago
  86. 41f90bd Don't leak job command in #(). by Nicholas Marriott · 15 years ago
  87. d3d85c3 -a flag to insert a window after an existing one, moving other windows by Nicholas Marriott · 15 years ago
  88. d267845 dispense with some wacky escape sequences; by Jason McIntyre · 15 years ago
  89. c550e66 Dead functions, lint. by Nicholas Marriott · 15 years ago
  90. e16b7b8 Reset output functions too when changing client after attaching, to by Nicholas Marriott · 15 years ago
  91. 9abbe34 paste-buffer should be per pane, from C. Coutinho. by Nicholas Marriott · 15 years ago
  92. 509ce7f Nuke unused variable. by Nicholas Marriott · 15 years ago
  93. 0ac6efa Add vi-style "jump" commands for copy mode, from Micah Cowan. by Nicholas Marriott · 15 years ago
  94. 6f04866 Support up, down, left, right movement through panes with -UDLR flags to by Nicholas Marriott · 15 years ago
  95. 021037c Accept a full key match (not a partial) even if there is data left in by Nicholas Marriott · 15 years ago
  96. 4baafd8 New input parser based on http://vt100.net/emu/dec_ansi_parser. by Nicholas Marriott · 15 years ago
  97. 48dd720 Fix a use-after-free when cancelling copy mode, or trying to repeat cancel. by Nicholas Marriott · 15 years ago
  98. 7bc3f5d Permit keys in copy mode to be prefixed by a repeat count, entered with by Nicholas Marriott · 15 years ago
  99. 56a33b1 Extend the end-of-line key so that in normal mode a second press moves by Nicholas Marriott · 15 years ago
  100. c7046b9 Check for colour and attribute modifications early so the translated by Nicholas Marriott · 15 years ago