- a2dd7da Fix UTF-8 combining characters in column 0, based on a diff from Keith Winstein. by nicm · 8 years ago
- d520dae Make full width panes try to play more nicely with terminal copy and by nicm · 8 years ago
- 55cd4c7 Can't collect UTF-8 characters of more than one byte at the moment. by nicm · 8 years ago
- 1e6e606 Need to flush before writing out cells we are not collecting, also add by nicm · 8 years ago
- fba9ebc When redrawing a combined UTF-8 characters in its existing position, by nicm · 8 years ago
- 9e4c513 Scrolling at least needs to be flushed before sending EL to the terminal by nicm · 8 years ago
- c948c6b Handle insert cells when cursor at edge of screen correctly, and do a by nicm · 8 years ago
- ddb3750 Combining characters need a full flush. by nicm · 8 years ago
- fd6e465 When an ordinary (not collected) cell is received, we need to flush any by nicm · 8 years ago
- e100d46 Add support for scroll up escape sequence (CSI S) and use it when by nicm · 8 years ago
- 13a0b6b Collect sequences of printable ASCII characters and process them by nicm · 8 years ago
- 7475165 Some other tidying bits. by nicm · 8 years ago
- 9cc02d1 Trying to avoid the occasional newline by saving the last cell on screen by nicm · 8 years ago
- 10e14ae Add BCE for clear to start of screen, which was somehow missed. by nicm · 8 years ago
- 3fd34e7 Only redraw the modified character when adding combining characters, not by nicm · 8 years ago
- 9e78603 Fix setting the palette of aixterm colours (90-97). by nicm · 8 years ago
- 9a56671 Highlight all occurrences of search string after searching in copy mode. by nicm · 8 years ago
- bee95bf Spacing nits. by nicm · 8 years ago
- 8763bce Zero dirty count after flushing. by nicm · 8 years ago
- 4179b42 Add support for BCE (background colour erase). This makes various escape by nicm · 8 years ago
- e83ebf5 Fix a couple of problems with insert mode: flush dirty cells before we by nicm · 8 years ago
- 4160df4 Redraw selection in tty_draw_line, so it appears when redrawing whole by nicm · 8 years ago
- 30086e5 screen_write_copy tried to be clever and clear the line if it reached by nicm · 8 years ago
- f55c991 Wrap some long lines in screen-write.c. by nicm · 8 years ago
- cf7f3a4 Check padding when writing any character with width > 1, in case they by nicm · 8 years ago
- 2627ab3 Remember the number of lines scrolled into the history (versus cleared by nicm · 8 years ago
- 0f73af8 Don't update cells in each block of data read from a pane immediately, by nicm · 8 years ago
- aba4438 Cache selected state so that cells going from selected to unselected are not by nicm · 8 years ago
- 36ab4c7 Do not draw character to screen if it has not changed, and do not save by nicm · 8 years ago
- 344a6a6 Padding cell is always the same so use a static. by nicm · 8 years ago
- 382222a Break the save-last-cell code into a separate function (so it can be by nicm · 8 years ago
- 5f2bfd9 Make the grid_cell passed into screen_write_* const. by nicm · 9 years ago
- 97882f9 Clear RGB flags during selection. by nicm · 9 years ago
- 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
- 88bc8f3 Style nits and line wrapping of function declarations. by nicm · 9 years ago
- 2adf3f4 Partly revert previous, it is harmless to keep support for UTF-8 mouse by nicm · 9 years ago
- 32e510b Remove support for the UTF-8 mouse extension. This was a briefly used, by nicm · 9 years ago
- 577c0e3 Use __unused rather than rolling our own. by nicm · 9 years ago
- 205d15e All these return values from utf8_* are confusing, use an enum. by nicm · 9 years ago
- 64333e3 Be more strict about invalid UTF-8. by nicm · 9 years ago
- c5689a5 Long overdue change to the way we store cells in the grid: now, instead by nicm · 9 years ago
- e71a915 Rename overly-long utf8data to ud throughout. by nicm · 9 years ago
- 1b86f52 Nuke the utf8 and status-utf8 options and make tmux only a UTF-8 by nicm · 9 years ago
- 16ee4de Remove some extra blank lines. by nicm · 9 years ago
- cc768d7 Revert to marking lines as wrapped on newlines, fixes problems with capturep -J. by nicm · 9 years ago
- 8f13022 Two improvements to reflow from Balazs Kezes: by nicm · 10 years ago
- 0a1a88d Better format for printf format attributes. by nicm · 10 years ago
- 2f19df0 Copy ACS characters as UTF-8, from Balazs Kezes. by nicm · 10 years ago
- a5d4b7f Some more long lines. by nicm · 11 years ago
- 945339b Allow replacing each of the many sets of separate foo-{fg,bg,attr} by nicm · 11 years ago
- 772d61f RIS should reset focus reporting, from Hayaki Saito. by Nicholas Marriott · 12 years ago
- 5e4d9a3 Move the cursor back into the last column on CUU/CUD to match xterm by Nicholas Marriott · 12 years ago
- f198365 Unbreak line wrapping. by Nicholas Marriott · 12 years ago
- ad5df9b Implement DECAWM (SM/RM 7) using existing MODE_WRAP flag. by Nicholas Marriott · 12 years ago
- 67b4d5b Support the latest theory for mouse input, this is enabled/disabled with by Nicholas Marriott · 12 years ago
- 10682b9 Instead of loads of little screen_write_*_on and off functions which by Nicholas Marriott · 12 years ago
- fdbfc7e Rather than having two grids for each pane, one for ASCII and one for by Nicholas Marriott · 12 years ago
- 44f8e1c Implement ECH (erase character, CSI X). Reported by Christian Neukirchen. by Nicholas Marriott · 12 years ago
- 3fa4f69 Handle resetting 256-colours properly when parsing #[default], by Nicholas Marriott · 12 years ago
- eb0ad18 Use ACS characters for choose-tree arrows based on diff from Romain Francoise. by Nicholas Marriott · 12 years ago
- df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
- 0489213 Revert screen-write.c r1.54 and fix the bug properly. After wrapping a by Nicholas Marriott · 13 years ago
- 71df37c Store context off before moving the cursor when wrapping, to fix long by Nicholas Marriott · 13 years ago
- f4fdddc Support "bracketed paste" mode. This adds a -p flag to paste-buffer - if by Nicholas Marriott · 13 years ago
- 66f0451 Add a -R flag to send-keys to reset the terminal. Written ages ago and by Nicholas Marriott · 13 years ago
- f0aad68 Support for \e[3J to clear the history. Also send the corresponding by Nicholas Marriott · 13 years ago
- 96e7f33 Support setting the xterm clipboard when copying from copy mode using by Nicholas Marriott · 14 years ago
- 044c0f9 Fix character position check, from Tiago Resende. by Nicholas Marriott · 14 years ago
- d74e5bf Fix to properly wrap wide characters, from Micah Cowan. by Nicholas Marriott · 14 years ago
- 79e30da Support passing through escape sequences to the underlying terminal by by Nicholas Marriott · 14 years ago
- ecc22c5 When clearing the entire screen, clear lines that are used into the by Nicholas Marriott · 14 years ago
- ac3b78a Support for UTF-8 mouse input (\033[1005h). This was added in xterm 262 by Nicholas Marriott · 14 years ago
- f7c42c2 Support all four of the xterm mouse modes. Based on a diff from hsim at gmx.li. by Nicholas Marriott · 14 years ago
- 5afb820 Ensure we overwrite UTF-8 wide characters properly, and never overwrite by Nicholas Marriott · 14 years ago
- ac9daf9 Merge copy mode and output mode, dropping the latter. Idea and code from by Nicholas Marriott · 15 years ago
- 15a64b8 Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last by Nicholas Marriott · 15 years ago
- 4ca857e Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to by Nicholas Marriott · 15 years ago
- a78cc98 Cleanup by moving various (mostly horrible) little bits handling UTF-8 grid by Nicholas Marriott · 15 years ago
- 5d7bff4 A screen can be one cell wide; don't crash if that is the case. by Nicholas Marriott · 15 years ago
- 9df4e75 Add an explicit zero-length check for UTF-8 input data, prompted by a report by Nicholas Marriott · 15 years ago
- 1af09d6 Try to reduce the UTF-8 mess. by Nicholas Marriott · 15 years ago
- 62f234c UTF-8 combined character fixes. by Nicholas Marriott · 15 years ago
- 387f4d4 Move the check for whether to force a line wrapper lower down into the tty code by Nicholas Marriott · 15 years ago
- daa2607 Always move the cursor position on !xenl terminals, since there is no invisible by Nicholas Marriott · 15 years ago
- fe26b5d Don't print wide characters at screen width - 1. Matches uterm behaviour and by Nicholas Marriott · 15 years ago
- 43d62c1 Instead of having a complicated check to see if the cursor is in the last by Nicholas Marriott · 15 years ago
- d7626cd When drawing lines that have wrapped naturally, don't force a newline but by Nicholas Marriott · 15 years ago
- 8608c69 When backspace is received at the beginning of a line and the previous line was by Nicholas Marriott · 15 years ago
- 5615744 Wrap a couple of long lines. by Nicholas Marriott · 15 years ago
- 33ae063 Permit attributes to be turned off in #[] by prefixing with "no", for example by Nicholas Marriott · 15 years ago
- 4278199 Stick line length to what is actually used (removing an optimization that by Nicholas Marriott · 15 years ago
- 372a8cb Permit options such as status-bg to be configured using the entire 256 colour by Nicholas Marriott · 15 years ago
- e97006b Permit embedded colour and attributes in status-left and status-right using new by Nicholas Marriott · 15 years ago
- 65ac8e9 Ugh, committed the wrong version of this change and got both solutions rather by Nicholas Marriott · 15 years ago
- 1501b3f A few trivial optimisations: no need to check for zero size if calling by Nicholas Marriott · 15 years ago
- b02e429 It was originally intended that scroll mode would show content that was by Nicholas Marriott · 15 years ago
- 06ddd3d Add a flags member to the grid_line struct and use it to differentiate lines by Nicholas Marriott · 15 years ago
- 97f105c Plug some memory leaks. by Nicholas Marriott · 15 years ago
- fc65da1 Draw UTF-8 characters under the selection correctly. by Nicholas Marriott · 15 years ago
- ddad0be More tty code tidying: move the saved cursor/region position (from before the by Nicholas Marriott · 15 years ago