1. 2e7ec8c Improve logging of screen mode changes. by Nicholas Marriott · 3 years, 7 months ago
  2. 255802d Trim output overwritten by later text or clears completely rather than by nicm · 3 years, 10 months ago
  3. 8156d9b Flush pending output before entering or exiting alternate screen rather by nicm · 3 years, 10 months ago
  4. 9fcf413 Revert clear changes to writing as they don't work properly, better by nicm · 3 years, 10 months ago
  5. 91d112b There is no need to clear every line entirely before drawing to it, this by nicm · 3 years, 10 months ago
  6. ed78630 Do not clear the wrapped flag on linefeeds if it is already set - this by nicm · 3 years, 12 months ago
  7. 1326529 Remove some old debug logging. by nicm · 4 years ago
  8. 743ab57 Fix show-buffer when run from inside tmux, GitHub issue 2314. by nicm · 4 years, 4 months ago
  9. 2aa177d Do not eliminate redundant clears, the code is wrong and doing it by nicm · 4 years, 5 months ago
  10. 068b92b The redraw callback could be fired with a NULL pane if it updates while by nicm · 4 years, 5 months ago
  11. 4694e9a Move the code to set up a padding cell into grid.c. by nicm · 4 years, 6 months ago
  12. 2a4d4bd Allow UTF-8 characters of width 0 to be stored, it is useful to be able by nicm · 4 years, 6 months ago
  13. f336599 Make padding cell a valid character. by nicm · 4 years, 6 months ago
  14. 35779d6 Fix definition of padding cells so they are not extended cells. by nicm · 4 years, 6 months ago
  15. ecbdcc2 Add screen write flags instead of individual bits and fix line length by nicm · 4 years, 6 months ago
  16. d67245c Add a customize mode where keys and options may be browsed and changed, by nicm · 4 years, 6 months ago
  17. 9605b08 Do not hoke into struct window_pane from the tty code and instead set by nicm · 4 years, 6 months ago
  18. 379ca54 Rename and tidy some stuff in struct tty_ctx. by nicm · 4 years, 6 months ago
  19. 2391fe2 Copy mode search improvements: by nicm · 4 years, 6 months ago
  20. 445dfa8 Move the background colour to clear with (if any) up as well as the data by nicm · 4 years, 7 months ago
  21. 4a5182e Always start sync for output in panes that are not the active pane. by nicm · 4 years, 7 months ago
  22. 2083a6e Change how sync works to always send the end sequence after all output by nicm · 4 years, 7 months ago
  23. 100db55 A resize can realloc so cannot cache the value of the list pointer. by nicm · 4 years, 7 months ago
  24. deffef6 Reset background colour on scrolled line. by nicm · 4 years, 7 months ago
  25. ea5fdd5 There is no point in keeping a bunch of different text buffers for each by nicm · 4 years, 7 months ago
  26. e153b92 Add formats for pane written/skipped bytes for debugging. by nicm · 4 years, 7 months ago
  27. bbd6e89 There is no point allocating a new item and putting it on the list when by nicm · 4 years, 7 months ago
  28. 5f18844 Return to sending sync around clears. by nicm · 4 years, 7 months ago
  29. d8433ad Do not need to set up a tty context for clearing lines now. by nicm · 4 years, 7 months ago
  30. d90ca7e Collect up line clears like text within the available data so we don't by nicm · 4 years, 7 months ago
  31. c1b015f Log what caused a flush for better visibility on what could be improved. by nicm · 4 years, 7 months ago
  32. 2e347d6 Only start and stop sync for operations like clear and scroll where by nicm · 4 years, 7 months ago
  33. b2443aa Add support for the iTerm2 sychronized updates escape sequence which by nicm · 4 years, 7 months ago
  34. 1e72f5e Use mode-style for selected items, like choose modes. GitHub issue 2166. by nicm · 4 years, 7 months ago
  35. 08e2828 Parse out DA features. by nicm · 4 years, 12 months ago
  36. e3359f8 Some minor performance improvements - most notably, don't search the by nicm · 5 years ago
  37. e8adcae Couple of bits of minor cleanup. by nicm · 5 years ago
  38. 45f4ff5 Add support for the SD (scroll down) escape sequence, GitHub issue 1861. by nicm · 5 years ago
  39. cbe7812 Use the clear history function for the 3J sequence rather than doing it manually. by nicm · 5 years ago
  40. 3635b3c Correctly clear underscore colour in grid_get_cell1, also fix struct by nicm · 5 years ago
  41. dae2868 Add support for underscore colours with Setulc capability, mostly from by nicm · 5 years ago
  42. 1225541 Allow menu items to be disabled by putting a - at the start of their by nicm · 5 years ago
  43. 004a9b5 Add a function to draw a simple menu onto a screen. by nicm · 6 years ago
  44. 3f18994 Pass target client and session to load_cfg from source-file so formats by nicm · 6 years ago
  45. 06d58b3 screen_write_fast_copy can no longer assume the target screen is default by nicm · 6 years ago
  46. 9793138 Extend the #[] style syntax and use that together with previous format by nicm · 6 years ago
  47. 13f9a06 Add a wrapper (struct style) around styles rather than using the by nicm · 6 years ago
  48. 938156d DECRC and DECSC apparently need to preserve origin mode as well, based by nicm · 6 years ago
  49. 2796ae8 Fix HPA in origin mode. by nicm · 6 years ago
  50. 303d20a Fix wrapping after origin mode change. by nicm · 6 years ago
  51. ff4c80d Add support for origin mode (DECOM, SM/RM ?6), from Marc Reisner. by nicm · 6 years ago
  52. 50cdfc0 Initialize context property in alignment test handler function. by nicm · 6 years ago
  53. 86e648d Allow style #[] in mode formats. by nicm · 6 years ago
  54. ef904cf Reset all flags in screen_write_reset, reported by Benjamin Poirier. by nicm · 6 years ago
  55. fc41bf4 Add a "terminal" colour which can be used instead of "default" in style by nicm · 6 years ago
  56. 6469953 Support for windows larger than visible on the attached client. This has by nicm · 6 years ago
  57. 82776c4 Move struct screen_sel into screen.c and tidy up members that are only by nicm · 6 years ago
  58. 2fae6a5 Add accessors for grid linedata member, for some future work. From Dan Aloni. by nicm · 6 years ago
  59. b0c1cef Do not collect top-bit-set characters in case they need to be replaced. by nicm · 7 years ago
  60. 533a571 Completely rewrite the reflow code to correctly handle double width by nicm · 7 years ago
  61. 50a5f84 Support mouse on preview in tree mode. by nicm · 7 years ago
  62. 43264df Make the mode draw function use the parent screen directly rather than by nicm · 7 years ago
  63. 8d37f69 Add a "fast" version of screen_write_copy for tree mode that doesn't do by nicm · 7 years ago
  64. 6a292f0 When writing batches of characters to the screen, we need to clear by nicm · 7 years ago
  65. 5dd5543 Add -F to choose-tree, choose-client, choose-buffer to specify the by nicm · 7 years ago
  66. 7247553 Try to show a better preview of sessions and windows in tree mode. by nicm · 7 years ago
  67. e028ab3 Need to flush out the linefeed after wrapper. GitHub issue 970. by nicm · 7 years ago
  68. 1840390 Typo/style; plus man page escaping from jmc. by nicm · 7 years ago
  69. 248aa54 Style and spacing nits. by nicm · 7 years ago
  70. aad4e4d Rewrite of choose mode, both to simplify and tidy the code and to add by nicm · 7 years ago
  71. e2a18e2 Need to store bg for ECH. by nicm · 8 years ago
  72. ffd8beb Need to clear tty context before using it. by nicm · 8 years ago
  73. 18bab30 Scrolling needs to use background colour. by nicm · 8 years ago
  74. 886d50d ECH needs to use background colour. by nicm · 8 years ago
  75. c0d3f20 Clear to start of screen needs to use background colour. by nicm · 8 years ago
  76. a2dd7da Fix UTF-8 combining characters in column 0, based on a diff from Keith Winstein. by nicm · 8 years ago
  77. d520dae Make full width panes try to play more nicely with terminal copy and by nicm · 8 years ago
  78. 55cd4c7 Can't collect UTF-8 characters of more than one byte at the moment. by nicm · 8 years ago
  79. 1e6e606 Need to flush before writing out cells we are not collecting, also add by nicm · 8 years ago
  80. fba9ebc When redrawing a combined UTF-8 characters in its existing position, by nicm · 8 years ago
  81. 9e4c513 Scrolling at least needs to be flushed before sending EL to the terminal by nicm · 8 years ago
  82. c948c6b Handle insert cells when cursor at edge of screen correctly, and do a by nicm · 8 years ago
  83. ddb3750 Combining characters need a full flush. by nicm · 8 years ago
  84. fd6e465 When an ordinary (not collected) cell is received, we need to flush any by nicm · 8 years ago
  85. e100d46 Add support for scroll up escape sequence (CSI S) and use it when by nicm · 8 years ago
  86. 13a0b6b Collect sequences of printable ASCII characters and process them by nicm · 8 years ago
  87. 7475165 Some other tidying bits. by nicm · 8 years ago
  88. 9cc02d1 Trying to avoid the occasional newline by saving the last cell on screen by nicm · 8 years ago
  89. 10e14ae Add BCE for clear to start of screen, which was somehow missed. by nicm · 8 years ago
  90. 3fd34e7 Only redraw the modified character when adding combining characters, not by nicm · 8 years ago
  91. 9e78603 Fix setting the palette of aixterm colours (90-97). by nicm · 8 years ago
  92. 9a56671 Highlight all occurrences of search string after searching in copy mode. by nicm · 8 years ago
  93. bee95bf Spacing nits. by nicm · 8 years ago
  94. 8763bce Zero dirty count after flushing. by nicm · 8 years ago
  95. 4179b42 Add support for BCE (background colour erase). This makes various escape by nicm · 8 years ago
  96. e83ebf5 Fix a couple of problems with insert mode: flush dirty cells before we by nicm · 8 years ago
  97. 4160df4 Redraw selection in tty_draw_line, so it appears when redrawing whole by nicm · 8 years ago
  98. 30086e5 screen_write_copy tried to be clever and clear the line if it reached by nicm · 8 years ago
  99. f55c991 Wrap some long lines in screen-write.c. by nicm · 8 years ago
  100. cf7f3a4 Check padding when writing any character with width > 1, in case they by nicm · 8 years ago