1. a4cb700 Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  2. 392b381 Apply -n when only one pane in the window. by nicm · 5 years ago
  3. 370f0bb Remove leftover debug logging and fix comparison. by nicm · 5 years ago
  4. ca0166f Do not try to use the last marked pane if it is invalid. by nicm · 5 years ago
  5. ea610a3 Pass the stdout file descriptor from the client as well as stdin and use by nicm · 5 years ago
  6. bc2e0cf Remove bad merge. by Nicholas Marriott · 5 years ago
  7. d73fcfc Put the fix back for wcwidth() failing. by Nicholas Marriott · 5 years ago
  8. 967e5f8 Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  9. fd4d3e8 Set IUTF8 again when it exists. by Nicholas Marriott · 5 years ago
  10. 6f03e49 Use the internal representation for UTF-8 keys instead of wchar_t and by nicm · 5 years ago
  11. 35779d6 Fix definition of padding cells so they are not extended cells. by nicm · 5 years ago
  12. 49ec074 Tidy up new UTF-8 code and make it more generic. by nicm · 5 years ago
  13. dc89340 Fix some error strings, from Kris Katterjohn. by nicm · 5 years ago
  14. b34af61 Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  15. bbfb44e Make some data types consistent. by nicm · 5 years ago
  16. 32ce468 Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  17. 4589297 Do not attempt to divide by zero when working out copy position. by nicm · 5 years ago
  18. 26e8e46 Include title for the width of the menu. by nicm · 5 years ago
  19. bb5a192 Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  20. 3a5219c Instead of storing all UTF-8 characters in the extended cell which means by nicm · 5 years ago
  21. e16191d Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  22. 14a9fd5 Remove leftover call to control_free_offsets and do not use for by nicm · 5 years ago
  23. aeefd58 Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  24. 18aab90 Give control code its own state struct. by nicm · 5 years ago
  25. 6c82982 Now the tty has a pointer back to the client there is no point (and a by nicm · 5 years ago
  26. e71c5ef Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  27. 2ac6cc2 Put headers back how they were. by Nicholas Marriott · 5 years ago
  28. a48cc45 Maybe this is better. by Nicholas Marriott · 5 years ago
  29. 1fdacba Think Solaris needs term.h here. by Nicholas Marriott · 5 years ago
  30. b3e5a99 And tweak again. by Nicholas Marriott · 5 years ago
  31. 6ae26a6 Fix utf8proc version logging. by Nicholas Marriott · 5 years ago
  32. 87a59ef Log ncurses and utf8proc versions. by Nicholas Marriott · 5 years ago
  33. 033d647 FocusIn keys can also update the latest client, like normal keys. by nicm · 5 years ago
  34. a06a0e1 xterm* can have focus too. by nicm · 5 years ago
  35. d48f0e1 Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  36. 9a0763c Move client offset stuff into control.c since only control clients will need it. by nicm · 5 years ago
  37. 2420bd8 spawn.c: fix up bad merge by Thomas Adam · 5 years ago
  38. 40126ee Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  39. 31e3f2d Support code for control mode flow control: allow clients to have by nicm · 5 years ago
  40. 98a18d0 Fix a regression test, size is not updated until end of event loop. by Nicholas Marriott · 5 years ago
  41. 5ac5cd9 Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  42. 6bde1c1 Fix a couple more places where the key flags need to be masked off. by nicm · 5 years ago
  43. fa83533 Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  44. b53e60f Remove a redundant if statement. by nicm · 5 years ago
  45. 2a9e2b5 Key strings need to include the cursor and keypad flags now since the by nicm · 5 years ago
  46. fb9e53b Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  47. e10f5a7 Add FreeBSD CI, from Jan Beich. by Nicholas Marriott · 5 years ago
  48. 8425084 Some other ctrl keys need to be translated with extended keys on. by nicm · 5 years ago
  49. dc56b3c No paths.h. by Nicholas Marriott · 5 years ago
  50. 2bc05db remove vis.h: portable doesn't need this by Thomas Adam · 5 years ago
  51. bd87f6b Merge branch 'obsd-master' by Thomas Adam · 5 years ago
  52. 574a9e4 Move lazy resize from the pane to the window, there is no point in by nicm · 5 years ago
  53. 844b363 On select-window, make this client the latest client for the window. by nicm · 5 years ago
  54. 0ab82d9 Add a terminal feature for enable/disable extended keys (supported by by nicm · 5 years ago
  55. 292b335 Separate key flags and modifiers, log key flags, make the "xterm" flag by nicm · 5 years ago
  56. e2a2674 Add an option to set the pane border lines style from a choice of single by nicm · 5 years ago
  57. ecbdcc2 Add screen write flags instead of individual bits and fix line length by nicm · 5 years ago
  58. 303d342 Add a client flag 'active-pane' which stores the active pane in the by nicm · 5 years ago
  59. c914abf Expand target from client and use it to expand the prompt. by nicm · 5 years ago
  60. 72984c4 Move editor stuff to common code in popup.c. by nicm · 5 years ago
  61. ff8dd15 Add a mark in copy mode. Set with set-mark command (bound to 'X') by by nicm · 5 years ago
  62. dceb6a1 Add a -D flag to ask tmux not to daemonize, useful both for running a by nicm · 5 years ago
  63. 126bacb Do not loop forever when search finds an empty match, GitHub issue 2203. by nicm · 5 years ago
  64. 592f141 Fix next-matching-bracket logic, from Chris Barber. by nicm · 5 years ago
  65. d67245c Add a customize mode where keys and options may be browsed and changed, by nicm · 5 years ago
  66. 472d77f Support embedded styles in the display-message message, GitHub issue 2206. by nicm · 5 years ago
  67. 6ea6d46 Store and restore cursor position when copy mode is resized, from by nicm · 5 years ago
  68. daa9581 Allow a custom time format to be given to the t format modifier. by nicm · 5 years ago
  69. 367b4e4 Change message log to be per server rather than per client and include by nicm · 5 years ago
  70. 4de0bd4 Add M-+ and M-- to expand and collapse all items in tree mode. by nicm · 5 years ago
  71. cf9badd Change the existing client flags for control mode to apply for any by nicm · 5 years ago
  72. 469eda7 Only redraw popup on the client it belongs to. by nicm · 5 years ago
  73. 4e05368 Export TERM_PROGRAM and TERM_PROGRAM_VERSION like various other terminals. by nicm · 5 years ago
  74. beb214b Add formats for after hook command arguments. by nicm · 5 years ago
  75. d056144 Try to search the entire history first for up to 200 ms so a search by nicm · 5 years ago
  76. 3fb4d4d Do not need to work out status line offset, we already have it. by nicm · 5 years ago
  77. 2df75aa Use VIS_CSTYLE for paste buffers also. by nicm · 5 years ago
  78. 9605b08 Do not hoke into struct window_pane from the tty code and instead set by nicm · 5 years ago
  79. 379ca54 Rename and tidy some stuff in struct tty_ctx. by nicm · 5 years ago
  80. edeb81b Add -e for new-session to set environment variables. by nicm · 5 years ago
  81. 7859545 Add 'e' key in buffer mode to open the buffer in an editor. by nicm · 5 years ago
  82. a3cbc01 Use formats for status-style and message-style. by nicm · 5 years ago
  83. 58fb81d Complete partial window indexes properly. by nicm · 5 years ago
  84. 463864f Add -W and -T flags to command-prompt to only complete a window and a by nicm · 5 years ago
  85. 2391fe2 Copy mode search improvements: by nicm · 5 years ago
  86. 80e5254 Improve command prompt completion: by nicm · 5 years ago
  87. f03b611 Drop having a separate type for style options and make them all strings, by nicm · 5 years ago
  88. 0487029 Call format_defaults_window for panes as well. by nicm · 5 years ago
  89. 5bf96c2 Use a grid cell not a style for the pane style. by nicm · 5 years ago
  90. 428137d Instead of forbidding invalid session names, sanitize them like window names. by nicm · 5 years ago
  91. 7dbe623 Instead of having a default set of terminals in terminal-overrides that by nicm · 5 years ago
  92. 21a39c9 Do not redraw or update mode if nothing has changed. by nicm · 5 years ago
  93. aebeeec Add feature and capabilities for focus reporting. Also document AX and by nicm · 5 years ago
  94. 26312a7 Move terminal features into a single file. by nicm · 5 years ago
  95. a29196c Build list of paths and weed out duplicates before loading configs, and by nicm · 5 years ago
  96. 4e0a718 Add extension terminfo(5) capabilities for margins. by nicm · 5 years ago
  97. 41dec58 Response is iTerm2 not not ITerm2. by nicm · 5 years ago
  98. 9dd5847 Remove support for iTerm2's DSR 1337 extension and use the CSI > q by nicm · 5 years ago
  99. 471f697 Add an attribute for ACS. by nicm · 5 years ago
  100. 0dd1944 Tweak the default choose modes formats: by nicm · 5 years ago