1. 4ca857e Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to by Nicholas Marriott · 15 years ago
  2. 621dabd Rename a variable to something more helpful. by Nicholas Marriott · 15 years ago
  3. 3e14796 Get a u_char from the string, otherwise it isn't possible to enter \0377 as it by Nicholas Marriott · 15 years ago
  4. 9c01479 Handle the possibility of partial mouse reads, and fix a comment while here. by Nicholas Marriott · 15 years ago
  5. d31d4c0 Emulate il1, dl1, ich1 to run (albeit slowly) with vt100 feature set. by Nicholas Marriott · 15 years ago
  6. 094bca5 Output the right keys for application and number keypad modes (they were the by Nicholas Marriott · 15 years ago
  7. 87821fc Add a -p flag to display-message to print the output rather than displaying in by Nicholas Marriott · 15 years ago
  8. fce47e2 Add cursor keys to the key names list. by Nicholas Marriott · 15 years ago
  9. 9b9d26f Use home from struct passwd if HOME is empty as well as if it is NULL, and fix by Nicholas Marriott · 15 years ago
  10. 58688c4 When -h and -p are given to split-window, calculate the percentage size using by Nicholas Marriott · 15 years ago
  11. 5d56225 Display UTF-8 properly in status line messages and prompt. Cursor handling is by Nicholas Marriott · 15 years ago
  12. 070e3b4 Remove oldest messages from log when limit is hit, not newest. by Nicholas Marriott · 15 years ago
  13. 2cea943 Get some brackets in the right place so ## works. Also fix a space in a comment. by Nicholas Marriott · 15 years ago
  14. 33b337f Change status line drawing to create the window list in a separate screen and by Nicholas Marriott · 15 years ago
  15. 543fb99 Two new options, window-status-format and window-status-current-format, which by Nicholas Marriott · 15 years ago
  16. 8b8a211 tweak previous; by Jason McIntyre · 15 years ago
  17. 4a38189 Revert to xterm-keys off by default. It was on as an experiment to see if the by Nicholas Marriott · 15 years ago
  18. ed781e8 Tidy up by breaking the # replacement code into a separate function, also add a by Nicholas Marriott · 15 years ago
  19. ac5b7d5 Don't interpret #() for display-message, it usually doesn't make sense and may by Nicholas Marriott · 15 years ago
  20. 8d4eae5 Missed an unused variable :-/. by Nicholas Marriott · 15 years ago
  21. a78cc98 Cleanup by moving various (mostly horrible) little bits handling UTF-8 grid by Nicholas Marriott · 15 years ago
  22. 8db145d Add a per-client log of status line messages displayed while that client by Nicholas Marriott · 15 years ago
  23. 68f5c9c Mark -n keys with (no prefix) rather than []. by Nicholas Marriott · 15 years ago
  24. a9ca8df Permit top-bit-set characters to be entered in the status line. They could by Nicholas Marriott · 15 years ago
  25. 67bf093 In choose mode, assign each item a number or lowercase letter from those by Nicholas Marriott · 15 years ago
  26. 5d7bff4 A screen can be one cell wide; don't crash if that is the case. by Nicholas Marriott · 15 years ago
  27. 9f6d685 I made a complete horlicks of the last change, fix it so it doesn't either lead by Nicholas Marriott · 15 years ago
  28. 10e05f9 Tweak a comment and add some spacing. by Nicholas Marriott · 15 years ago
  29. 76ef877 Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the by Nicholas Marriott · 15 years ago
  30. dafa0f0 Unreachable statement, found by lint. by Nicholas Marriott · 15 years ago
  31. 3904725 Tidy up and fix some types, prompted by lint via deraadt. by Nicholas Marriott · 15 years ago
  32. a18a374 imsg_read returns ssize_t not int, pointed out by lint via deraadt. by Nicholas Marriott · 15 years ago
  33. 8e47966 Destroy panes immediately rather than checking them all every loop. by Nicholas Marriott · 15 years ago
  34. 1415eb3 Use winlink_remove() to remove old winlinks when synchronizing grouped sessions by Nicholas Marriott · 15 years ago
  35. 5d39746 Zap unused functions, prompted by deraadt. by Nicholas Marriott · 15 years ago
  36. 5ae542e Emulate the ri (reverse index) capability: this allows tmux to at least start by Nicholas Marriott · 15 years ago
  37. d9deb4b Support rxvt-style keys again, but this time: support all the variations, put by Nicholas Marriott · 15 years ago
  38. 89763f2 Rewrite a confusing loop when freeing the arg array on exit and move the check by Nicholas Marriott · 15 years ago
  39. 9df4e75 Add an explicit zero-length check for UTF-8 input data, prompted by a report by Nicholas Marriott · 15 years ago
  40. 08a8ccf Free the pane bufferevent when the fd is closed (the signal could come before by Nicholas Marriott · 15 years ago
  41. 2756437 Only need to chmod +x or -x the socket when a client is created, lost or by Nicholas Marriott · 15 years ago
  42. 15b9946 There is no real standard for modifier plus function keys. Previously, tmux by Nicholas Marriott · 15 years ago
  43. d9961f4 Don't output rxvtisms either. by Nicholas Marriott · 15 years ago
  44. 05831b5 Twiddling the last bit is an rxvtism, so do not support it in the table by by Nicholas Marriott · 15 years ago
  45. b92fcf2 Whoops, this is needed for last commit as well. by Nicholas Marriott · 15 years ago
  46. 38f64b3 Lookup key as a named key (eg 'Space') before checking for single character by Nicholas Marriott · 15 years ago
  47. 9f47c60 Don't return 1 unless there was actually a problem (signal/lost server) rather by Nicholas Marriott · 15 years ago
  48. 6609093 Just ignore tty fd errors rather than dying, stops the server dying if the by Nicholas Marriott · 15 years ago
  49. 591fa23 The input key should be a u_char. Fixes top-bit-set input problem reported by by Nicholas Marriott · 15 years ago
  50. daf150c Constify buf. by Nicholas Marriott · 15 years ago
  51. f98d13e Don't try enable/disable the event if the window pane is dead (fd == -1), as by Nicholas Marriott · 15 years ago
  52. bed8153 Clear to the end of the screen from the right starting point when drawing by Nicholas Marriott · 15 years ago
  53. 297ebb1 Old xterm F1-F4 are \033O_P not \033[O_P. by Nicholas Marriott · 15 years ago
  54. ff55eb5 Unused variable. Aargh. by Nicholas Marriott · 15 years ago
  55. 80e0158 Switch the tty key tree over to an (unbalanced) ternary tree which allows by Nicholas Marriott · 15 years ago
  56. 0585539 key_string_lookup_key uses a static buffer, so copy its output into the working by Nicholas Marriott · 15 years ago
  57. a790e16 Key flags are only used for initialisation so they are not needed in the main by Nicholas Marriott · 15 years ago
  58. 25c604f EVLOOP_ONCE takes care of the wakeup, so no need to call event_loopexit(NULL). by Nicholas Marriott · 15 years ago
  59. 38e1394 Now all timers are events, there is no longer any need to wake up every 50 ms - by Nicholas Marriott · 15 years ago
  60. b58bf49 Switch tty key input over to happen on a read event. This is a bit more by Nicholas Marriott · 15 years ago
  61. 8044443 Convert the key repeat timer to an event. by Nicholas Marriott · 15 years ago
  62. 44d6a2c Change window name change to use a timer event rather than a gettimeofday() by Nicholas Marriott · 15 years ago
  63. 946ed97 Move status timer check into the global once-per-second timer, this could maybe by Nicholas Marriott · 15 years ago
  64. b1264a7 Use timeout events for the identify and message timers. by Nicholas Marriott · 15 years ago
  65. b3c4956 Don't reenlist the client imsg event every loop, instead have a small function by Nicholas Marriott · 15 years ago
  66. 6a6a42a It would help if I read my own comments... make alt keys work again by sending by Nicholas Marriott · 15 years ago
  67. 862fe15 Move some common code into a function. by Nicholas Marriott · 15 years ago
  68. fde36fc Tell the client to exit on configuration file error. by Nicholas Marriott · 15 years ago
  69. 5bebbd8 Bye-bye buffer*.c. by Nicholas Marriott · 15 years ago
  70. a02c7e8 Convert the window pane (pty master side) fd over to use a bufferevent. by Nicholas Marriott · 15 years ago
  71. 06ffed3 Call event_init() before loading the config file, since potentially it could by Nicholas Marriott · 15 years ago
  72. 91ad830 Switch window pane pipe redirect fd over to a bufferevent. by Nicholas Marriott · 15 years ago
  73. 7342615 Switch tty fds over to a bufferevent. by Nicholas Marriott · 15 years ago
  74. abb7286 Add back JOB_PERSIST checks that got lost. by Nicholas Marriott · 15 years ago
  75. 4d60913 Switch jobs over to use a bufferevent. by Nicholas Marriott · 15 years ago
  76. ea8c8c5 A couple of minor cosmetic changes. by Nicholas Marriott · 15 years ago
  77. abf3a5d Initial changes to move tmux to libevent. by Nicholas Marriott · 15 years ago
  78. f575e39 Unused (but assigned to) variable, found by lint. by Nicholas Marriott · 15 years ago
  79. 10f58cb Ignore the colour on space, /not/ the attributes. by Nicholas Marriott · 15 years ago
  80. a94535f Fix the reverse emulation when a terminal doesn't have setab to use the correct by Nicholas Marriott · 15 years ago
  81. d2dfbef Change declaration and use of malloc_options to be more standard, from Tim van by Nicholas Marriott · 15 years ago
  82. d8332e6 Don't backoff based on suspended or deda clients as they are always likely to by Nicholas Marriott · 15 years ago
  83. 0785f28 Add an activity time for clients, like for sessions, and change session and by Nicholas Marriott · 15 years ago
  84. 5761ab6 If it isn't available explicitly, work out the current client in a similar way by Nicholas Marriott · 15 years ago
  85. 5289da2 Change session and client activity and creation time members to have more by Nicholas Marriott · 15 years ago
  86. c95f1d1 tv member of struct paste_buffer is updated but not otherwise used, so remove by Nicholas Marriott · 15 years ago
  87. 0194306 Fix vi page up mode key (from naddy), add missing half page keys, and sort. by Nicholas Marriott · 15 years ago
  88. 86182f3 Double the escape timer (the time after a \033 is received before tmux gives up by Nicholas Marriott · 15 years ago
  89. 1c853c6 When matching the session names with -t, look for exact matches first before by Nicholas Marriott · 15 years ago
  90. 2a585dc Leftover unused variable :-/. by Nicholas Marriott · 15 years ago
  91. 42fd44f There isn't much point in doing lstat before connect so instead just do connect by Nicholas Marriott · 15 years ago
  92. 992dd86 Reorder slightly to tidy code. by Nicholas Marriott · 15 years ago
  93. 2f813ef Add a flag for jobs that shouldn't be freed after they've died and use it for by Nicholas Marriott · 15 years ago
  94. 32299e4 Missing setenv/showenv aliases. by Nicholas Marriott · 15 years ago
  95. e8b2518 Missing ;. From eric@ ages ago. by Nicholas Marriott · 15 years ago
  96. dc3fdc8 If any client currently displaying a window pane has more than 1 KB of output by Nicholas Marriott · 15 years ago
  97. 1eaefbf Add a minor optimisatin: if the character being printed is space, don't worry by Nicholas Marriott · 15 years ago
  98. 5730cbf Twaek this slightly to avoid confusing use of flags variable. by Nicholas Marriott · 15 years ago
  99. eb5f446 Setting SGR0 when setting the fg and bg has problems if only one of the two is by Nicholas Marriott · 15 years ago
  100. 37ffdff Move the poll registration functions into the server-*.c files. by Nicholas Marriott · 15 years ago