1. b32ce34 Don't allow options in table without scope set. by nicm · 9 years ago
  2. 2adf3f4 Partly revert previous, it is harmless to keep support for UTF-8 mouse by nicm · 9 years ago
  3. 32e510b Remove support for the UTF-8 mouse extension. This was a briefly used, by nicm · 9 years ago
  4. 28e72ae Don't leak extddata, memset after freeing it, not before. From Patrick Palka. by nicm · 9 years ago
  5. 01a2ddf Add getpw to pledge, makes tmux work in YP environments, discovered by by nicm · 9 years ago
  6. 4fcc02e If display-time is set to 0, show status messages until a key is pressed; by tim · 9 years ago
  7. 933929c Memory leaks and an uninitialized part of utf8_data, from Patrick Palka. by nicm · 9 years ago
  8. 40fefe2 The alerts callback should be fired for bells even if bell-action is by nicm · 9 years ago
  9. fce56c5 Instead of separate tables for different types of options, give each by nicm · 9 years ago
  10. 374e273 Only assume pasting with at least two characters, reduces problems for by nicm · 9 years ago
  11. 98967c5 The activity flag could already be set, so queue the callback always (if by nicm · 9 years ago
  12. 82760a9 Use format_expand_time for display-message. by nicm · 9 years ago
  13. 577c0e3 Use __unused rather than rolling our own. by nicm · 9 years ago
  14. 5a5b950 Add s/foo/bar/: prefix for formats to substitute bar for foo. by nicm · 9 years ago
  15. 6457136 Sync the entire xmalloc.[ch] with the other users, but with the addition by nicm · 9 years ago
  16. ca5e6bf Don't update activity time twice for new sessions, and add some logging. by nicm · 9 years ago
  17. d0505fd Merge xmalloc.[ch] files across base, skipping OpenSSH for now. by tobias · 9 years ago
  18. 775fb56 0x7f is a valid key. by nicm · 9 years ago
  19. 661d0df Make key_code unsigned long long not uint64_t which is more portable for by nicm · 9 years ago
  20. a582b62 Accidentally turned off pledge, turn it back on. by nicm · 9 years ago
  21. 14d90e4 The character is an int so use %x not %hhx. by nicm · 9 years ago
  22. 3db0d50 The private use area at U+E000 to U+F8FF is not very useful if it is by nicm · 9 years ago
  23. 205d15e All these return values from utf8_* are confusing, use an enum. by nicm · 9 years ago
  24. f401791 Rename a variable in utf8_combine for consistency and use 0xfffd for by nicm · 9 years ago
  25. dab63b0 Couple of assignments to remove compiler warnings. by nicm · 9 years ago
  26. 64333e3 Be more strict about invalid UTF-8. by nicm · 9 years ago
  27. c56b81a Push stdout and stderr to clients more aggressively, and add an event to by nicm · 9 years ago
  28. 908e6bb Log more of UTF-8 input. by nicm · 9 years ago
  29. c4893d8 Log option names in fatal() for missing option. by nicm · 9 years ago
  30. 88aa1c8 Two spacing and spelling nits. by nicm · 9 years ago
  31. 531869b Add window_visible_layout which ignores zoomed panes and use it for by nicm · 9 years ago
  32. c5689a5 Long overdue change to the way we store cells in the grid: now, instead by nicm · 9 years ago
  33. e71a915 Rename overly-long utf8data to ud throughout. by nicm · 9 years ago
  34. f2d03f4 grid_put_utf8 is unused, remove it. by nicm · 9 years ago
  35. a209ea3 Add utf8_padcstr and use it to align columns in list-keys. by nicm · 9 years ago
  36. 1da7475 tweak previous; ok nicm by jmc · 9 years ago
  37. d6daf37 Tidy utf8.c a little: build table on first use, and make utf8_width take by nicm · 9 years ago
  38. 0cc812a tmux is UTF-8, so if $TMUX is set (tmux running in tmux), the client is by nicm · 9 years ago
  39. c41673f If we know the terminal outside tmux is not UTF-8, replace UTF-8 in by nicm · 9 years ago
  40. 1b86f52 Nuke the utf8 and status-utf8 options and make tmux only a UTF-8 by nicm · 9 years ago
  41. a0f3999 Remove the mouse_utf8_flag format as well. by nicm · 9 years ago
  42. 69e0b83 Support UTF-8 key bindings by expanding the key type from int to by nicm · 9 years ago
  43. 7062b0e Default history-file should be "" not NULL, from Greg Onufe. by nicm · 9 years ago
  44. 00c34df Drop mouse-utf8 option and always turn on UTF-8 mouse if the client says by nicm · 9 years ago
  45. 6f3475c If realpath() fails just try the original path. by nicm · 9 years ago
  46. 005e462 Handle absolute paths properly, and don't use resolved path in realpath() fails. by nicm · 9 years ago
  47. dcdccf8 Same bug as last commit, but in the other copy of the loop in this file... by nicm · 9 years ago
  48. e9b58d9 Update the internal wcwidth(3) table of tmux(1) to match the data by schwarze · 9 years ago
  49. 5577535 Pass through right click if mouse is on, from Patrick Palka. by nicm · 9 years ago
  50. 455284f Detach the client we are looping over, from Thomas Adam. by nicm · 9 years ago
  51. ba7fb49 Fall back silently to ~ or / rather than checking -c with access(), this by nicm · 9 years ago
  52. b0a99e8 Don't shift version out of peerid, it is needed later. by nicm · 9 years ago
  53. abb4e9e The output log is only useful once and it means creating a file, so open by nicm · 9 years ago
  54. 01defc9 Because pledge(2) does not allow us to pass directory file descriptors by nicm · 9 years ago
  55. 45f3cea Break version check into a separate function, and limit version to 8 bits. by nicm · 9 years ago
  56. bf9c933 Like options, move the environ struct into environ.c. by nicm · 9 years ago
  57. 44657bf Move struct options into options.c. by nicm · 9 years ago
  58. 67c3a01 No more TMPDIR. by nicm · 9 years ago
  59. 07b0ea0 Break the common process set up, event loop and imsg dispatch code by nicm · 9 years ago
  60. 9952201 Count brackets in #{?...} so that nested conditional formats work, from by nicm · 9 years ago
  61. 17c2c42 The format callback may not always succeed, so we need to check for by nicm · 9 years ago
  62. 3fc001d Use copy-mode -et= in WheelUpPane binding, from Patrick Palka. by nicm · 9 years ago
  63. 640c6fd If a mouse event has no key binding, pass it through to the pane it by nicm · 9 years ago
  64. 380a1ea Default bindings for mouse wheel on status line to change window (like by nicm · 9 years ago
  65. b85be36 Handle unknown keys more gracefully, return a string instead of NULL. by nicm · 9 years ago
  66. a22fe33 Some extra logging of where keys are actually going. by nicm · 9 years ago
  67. c582f7d space before punctuation; by jmc · 9 years ago
  68. e65306d Extend the modifiers allowed before formats: as well as the existing by nicm · 9 years ago
  69. 3faa51a Pass output from jobs through format_expand() so they are expanded again by nicm · 9 years ago
  70. 3034a71 Let's see if anyone screams about not being able to specify $TMPDIR by deraadt · 9 years ago
  71. 2e2b8a9 Pasting mouse escape sequences is unlikely, so skip them when working by nicm · 9 years ago
  72. 26a55dd Remove some unnecessary checks before free(). by nicm · 9 years ago
  73. 1a4ddfa If $TMUX is set, and we are unsure about the session, use it. by nicm · 9 years ago
  74. 5383b04 tmux can call pledge() in main with large set and then reduce it by nicm · 9 years ago
  75. 14da999 Format for scroll position, from Jorge Morante. by nicm · 9 years ago
  76. 63a3fd3 Use tty_term_flag not _has for XT, and make -2 force direct use of by nicm · 9 years ago
  77. 3ebcf25 If the pane is still on all_window_panes but not actually connected to by nicm · 9 years ago
  78. a05c27a Unzoom before -LRUD, reported by Andy Weidenbaum. by nicm · 9 years ago
  79. c2c2d44 Log identify messages. by nicm · 9 years ago
  80. 515dfea This should not be changed. by nicm · 9 years ago
  81. 31fd071 Rename shutdown to exit. by nicm · 9 years ago
  82. 60ca29d client_key_table was missing. by nicm · 9 years ago
  83. ddbc4a0 By popular demand add a default binding for mouse wheel up to scroll by nicm · 9 years ago
  84. 0760343 Use client pointer not file descriptor in logging. by nicm · 9 years ago
  85. 8c8cddb The table could change when retrying so don't save it at start of by nicm · 9 years ago
  86. 174a2ad Pass current directory as a string rather than a file descriptor because by nicm · 9 years ago
  87. 9c601eb Add pledge "stdio unix sendfd proc exec tty" to tmux client process, by nicm · 9 years ago
  88. cf89abb Don't free after calling paste_set but do after evbuffer_add, from Theo Buehler. by nicm · 9 years ago
  89. 241fd72 Userspace doesn't need to use SUN_LEN(): connect() and bind() must accept by guenther · 9 years ago
  90. 7340d5a Couple of memory leaks in error paths, from Frederik Vanderstraeten. by nicm · 9 years ago
  91. 695a591 Adding colors=256 to *256color* was always pretty stupid and now it by nicm · 9 years ago
  92. 03d7dba If the terminal has colors=256, only try to use setaf/setab if they by nicm · 9 years ago
  93. 28f23f1 Free the history when it is cleared, based on a diff from Carlo Cannas. by nicm · 9 years ago
  94. 2a62917 Don't leak fd and path on failure. by nicm · 9 years ago
  95. 69ea6b9 Do not leak log file descriptor. by nicm · 9 years ago
  96. ddb2d12 Assign flag not number for flag types (we got away with it so far by nicm · 9 years ago
  97. dc66795 Don't update last session when the session is unchanged, from Sina Siadat. by nicm · 9 years ago
  98. d5f223a Reset the alerts timer always on activity, from Thomas Adam. by nicm · 9 years ago
  99. 6b709e6 -l should apply to the new not the old pane with -b, from "MadMaverick9" by nicm · 9 years ago
  100. 8b5d5dc Redraw both src and dst sessions in break-pane. by nicm · 9 years ago