1. 31625c2 Line length and spaces to tabs. by nicm · 7 years ago
  2. d58c379 Some other unused variables. by nicm · 7 years ago
  3. 0cd7472 When expanding a line in order to clear it, we need to use the default by nicm · 7 years ago
  4. 18bab30 Scrolling needs to use background colour. by nicm · 7 years ago
  5. 03d01ea When we write out the grid including escape sequences, an SGR 0 needs to by nicm · 7 years ago
  6. 689f4bf Style nits and a missing cast. by nicm · 7 years ago
  7. df3ab87 Add support for the strikethrough attribute (SGR 9), using the new smxx by nicm · 8 years ago
  8. daac28f If moving cells outside the current used count, update it. by nicm · 8 years ago
  9. 0414b1f Minor bits: fix an array size, add comment, make grid_cell_entry static. by nicm · 8 years ago
  10. 4c2a780 Collected cells may still need to be extended for RGB colours. by nicm · 8 years ago
  11. 13a0b6b Collect sequences of printable ASCII characters and process them by nicm · 8 years ago
  12. ac1f294 Add a helper to store a cell, and some tidying. by nicm · 8 years ago
  13. acb4bd9 Tweak how much we expand lines by. by nicm · 8 years ago
  14. 75adf83 Expand lines more aggressively to reduce rate of allocations. by nicm · 8 years ago
  15. e0e9a54 Clear cell entry with grid_default_entry not grid_default_cell. by nicm · 8 years ago
  16. a0998e4 Make grid_clear_cell set up the entry properly for 256 and RGB cells. by nicm · 8 years ago
  17. 4179b42 Add support for BCE (background colour erase). This makes various escape by nicm · 8 years ago
  18. e454018 Add static in window-*.c and move some internal functions out of tmux.h. by nicm · 8 years ago
  19. c426e48 Loads more static, except for cmd-*.c and window-*.c. by nicm · 8 years ago
  20. 2627ab3 Remember the number of lines scrolled into the history (versus cleared by nicm · 8 years ago
  21. 0f73af8 Don't update cells in each block of data read from a pane immediately, by nicm · 8 years ago
  22. 49e9f93 Add RGB escape sequences for capture-pane -e. by nicm · 9 years ago
  23. 427b820 Support for RGB colour, using the extended cell mechanism to avoid by nicm · 9 years ago
  24. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  25. 28e72ae Don't leak extddata, memset after freeing it, not before. From Patrick Palka. by nicm · 9 years ago
  26. c5689a5 Long overdue change to the way we store cells in the grid: now, instead by nicm · 9 years ago
  27. f2d03f4 grid_put_utf8 is unused, remove it. by nicm · 9 years ago
  28. 28f23f1 Free the history when it is cleared, based on a diff from Carlo Cannas. by nicm · 9 years ago
  29. a45164f Fix indentation of grid_string_cells_fg. by nicm · 9 years ago
  30. 3219e03 In grid_duplicate_lines, if the line is empty (cellsize == 0) then clear by nicm · 9 years ago
  31. 879de25 Remove some stuff that accidentally ended up here from portable, and by nicm · 9 years ago
  32. ab73997 use reallocarray instead of calloc; avoid the zero before infill ok nicm by deraadt · 9 years ago
  33. a27ba6e Add xreallocarray and remove nmemb argument from xrealloc. by nicm · 10 years ago
  34. 77efcf8 Use xrealloc(NULL, n, m) instead of xmalloc(n * m) to get overflow check. by nicm · 10 years ago
  35. 21062d7 Fix some comments (c -> colour) and join unnecessary line splits. by nicm · 10 years ago
  36. 4e956d5 Various minor style and spacing nits. by nicm · 10 years ago
  37. 5acee1c Memory leak in error path and unnecessary assignment, from clang. by nicm · 11 years ago
  38. 7bdb675 GRID_DEBUG is no longer needed. by nicm · 11 years ago
  39. f835be4 Style nit - no space between function name and bracket. by nicm · 11 years ago
  40. 945339b Allow replacing each of the many sets of separate foo-{fg,bg,attr} by nicm · 11 years ago
  41. 3368b60 Couple of fixes from cppcheck via Tiago Cunha. by nicm · 11 years ago
  42. 994cb87 Style and comment fixes from Tiago Cunha. by nicm · 11 years ago
  43. 1b7c2dd Trivial style and spacing nits. by nicm · 11 years ago
  44. 7839993 Only include actual trailing spaces not unused cells with capturep -J, by nicm · 11 years ago
  45. 304336a Allow lastgc to be NULL in grid_string_cells so find-window doesn't by Nicholas Marriott · 12 years ago
  46. 295d869 Add -C and -J to capture pane to escape control sequences and to join by Nicholas Marriott · 12 years ago
  47. 9b7e18f Rework reflow code so it does not do so much allocation which should be by Nicholas Marriott · 12 years ago
  48. 8903c1f Automatically reflow wrapped lines when a pane is resized, requested by by Nicholas Marriott · 12 years ago
  49. fdbfc7e Rather than having two grids for each pane, one for ASCII and one for by Nicholas Marriott · 12 years ago
  50. df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
  51. 1f23f6d Use a predefined structure for not-space cells used to set attributes. by Nicholas Marriott · 12 years ago
  52. ac9daf9 Merge copy mode and output mode, dropping the latter. Idea and code from by Nicholas Marriott · 15 years ago
  53. 15a64b8 Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last by Nicholas Marriott · 15 years ago
  54. a78cc98 Cleanup by moving various (mostly horrible) little bits handling UTF-8 grid by Nicholas Marriott · 15 years ago
  55. ad566a8 Move lines into the history when scrolling even if the scroll region is not by Nicholas Marriott · 15 years ago
  56. 4278199 Stick line length to what is actually used (removing an optimization that by Nicholas Marriott · 15 years ago
  57. 0198bb6 Fix grid_expand_line so it actually works when the required size is bigger than by Nicholas Marriott · 15 years ago
  58. 1501b3f A few trivial optimisations: no need to check for zero size if calling by Nicholas Marriott · 15 years ago
  59. fa64c12 Use the right source and destination lines in grid_duplicate_lines. by Nicholas Marriott · 15 years ago
  60. 5e01b6d Change the way the grid is stored, previously it was: by Nicholas Marriott · 15 years ago
  61. 044ebf1 Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by by Nicholas Marriott · 15 years ago
  62. 924bf84 Typo in grid_duplicate_lines (sy for dy) causing it to write into the wrong by Nicholas Marriott · 15 years ago
  63. 3592859 Support "alternate screen" mode (terminfo smcup/rmcup) typically used by full by Nicholas Marriott · 15 years ago
  64. bd098c2 Limit the history to hlimit not hlimit - 1. This makes a history-limit setting by Nicholas Marriott · 15 years ago
  65. 1675ddb Miscellaneous unused functions, including one which was basically a by Nicholas Marriott · 15 years ago
  66. 7e796de Change find-window and monitor-content to use fnmatch(3). For convenience and by Nicholas Marriott · 15 years ago
  67. 096cbf2 Add a dedicated function to convert a line into a string and use it to simplify the search window function. by Nicholas Marriott · 15 years ago
  68. 74749e8 Remove trailing newlines, spaces, and tabs. by Ray Lai · 15 years ago
  69. 35876ea Import tmux, a terminal multiplexor allowing (among other things) a single by Nicholas Marriott · 15 years ago