Age | Commit message (Expand) | Author |
2017-05-16 | Line length and spaces to tabs. | Nicholas Marriott |
2017-05-13 | Some other unused variables. | Nicholas Marriott |
2017-05-12 | When expanding a line in order to clear it, we need to use the default | Nicholas Marriott |
2017-05-12 | Scrolling needs to use background colour. | Nicholas Marriott |
2017-04-25 | When we write out the grid including escape sequences, an SGR 0 needs to | Nicholas Marriott |
2017-04-19 | Style nits and a missing cast. | Nicholas Marriott |
2017-03-22 | Add support for the strikethrough attribute (SGR 9), using the new smxx | Nicholas Marriott |
2017-03-07 | If moving cells outside the current used count, update it. | Nicholas Marriott |
2017-02-22 | Minor bits: fix an array size, add comment, make grid_cell_entry static. | Nicholas Marriott |
2017-02-13 | Collected cells may still need to be extended for RGB colours. | Nicholas Marriott |
2017-02-08 | Collect sequences of printable ASCII characters and process them | Nicholas Marriott |
2017-02-08 | Add a helper to store a cell, and some tidying. | Nicholas Marriott |
2017-02-08 | Tweak how much we expand lines by. | Nicholas Marriott |
2017-02-03 | Expand lines more aggressively to reduce rate of allocations. | Nicholas Marriott |
2016-10-18 | Clear cell entry with grid_default_entry not grid_default_cell. | Nicholas Marriott |
2016-10-18 | Make grid_clear_cell set up the entry properly for 256 and RGB cells. | Nicholas Marriott |
2016-10-13 | Add support for BCE (background colour erase). This makes various escape | Nicholas Marriott |
2016-10-11 | Add static in window-*.c and move some internal functions out of tmux.h. | Nicholas Marriott |
2016-10-10 | Loads more static, except for cmd-*.c and window-*.c. | Nicholas Marriott |
2016-09-02 | Remember the number of lines scrolled into the history (versus cleared | Nicholas Marriott |
2016-07-15 | Don't update cells in each block of data read from a pane immediately, | Nicholas Marriott |
2016-07-15 | Instead of representing colours in several different forms with various | Nicholas Marriott |
2016-01-31 | Add RGB escape sequences for capture-pane -e. | Nicholas Marriott |
2016-01-29 | Support for RGB colour, using the extended cell mechanism to avoid | Nicholas Marriott |
2016-01-19 | I no longer use my SourceForge address so replace it. | Nicholas Marriott |
2015-11-22 | Don't leak extddata, memset after freeing it, not before. From Patrick | Nicholas Marriott |
2015-11-13 | Long overdue change to the way we store cells in the grid: now, instead | Nicholas Marriott |
2015-11-12 | grid_put_utf8 is unused, remove it. | Nicholas Marriott |
2015-09-25 | Free the history when it is cleared, based on a diff from Carlo Cannas. | Nicholas Marriott |
2015-09-02 | Fix indentation of grid_string_cells_fg. | Nicholas Marriott |
2015-08-24 | In grid_duplicate_lines, if the line is empty (cellsize == 0) then clear | Nicholas Marriott |
2015-05-08 | Remove some stuff that accidentally ended up here from portable, and | Nicholas Marriott |
2015-04-23 | use reallocarray instead of calloc; avoid the zero before infill | Theo de Raadt |
2014-10-08 | Add xreallocarray and remove nmemb argument from xrealloc. | Nicholas Marriott |
2014-10-08 | Use xrealloc(NULL, n, m) instead of xmalloc(n * m) to get overflow | Nicholas Marriott |
2014-09-17 | Fix some comments (c -> colour) and join unnecessary line splits. | Nicholas Marriott |
2014-09-01 | Various minor style and spacing nits. | Nicholas Marriott |
2014-04-16 | Memory leak in error path and unnecessary assignment, from clang. | Nicholas Marriott |
2014-03-31 | GRID_DEBUG is no longer needed. | Nicholas Marriott |
2014-02-14 | Style nit - no space between function name and bracket. | Nicholas Marriott |
2014-01-28 | Allow replacing each of the many sets of separate foo-{fg,bg,attr} | Nicholas Marriott |
2014-01-15 | Couple of fixes from cppcheck via Tiago Cunha. | Nicholas Marriott |
2014-01-09 | Style and comment fixes from Tiago Cunha. | Nicholas Marriott |
2013-10-10 | Trivial style and spacing nits. | Nicholas Marriott |
2013-10-10 | Only include actual trailing spaces not unused cells with capturep -J, | Nicholas Marriott |
2013-03-25 | Allow lastgc to be NULL in grid_string_cells so find-window doesn't | Nicholas Marriott |
2013-03-25 | Preserve trailing spaces with capture-pane -J, from George Nachman. | Nicholas Marriott |
2013-03-25 | Use \\ not \ for escaping \. | Nicholas Marriott |
2013-03-22 | Add -C and -J to capture pane to escape control sequences and to join | Nicholas Marriott |
2013-03-22 | Clear last attributes after reset in string_cells, from George Nachman. | Nicholas Marriott |