summaryrefslogtreecommitdiffstats
path: root/tty.c
AgeCommit message (Expand)Author
2020-06-05Fix various confusion about am vs xenl.nicm
2020-06-02Move the code to set up a padding cell into grid.c.nicm
2020-05-24Now the tty has a pointer back to the client there is no point (and anicm
2020-05-22xterm* can have focus too.nicm
2020-05-16Add a terminal feature for enable/disable extended keys (supported bynicm
2020-05-16Add an option to set the pane border lines style from a choice of singlenicm
2020-05-16Add a client flag 'active-pane' which stores the active pane in thenicm
2020-05-16Add a -D flag to ask tmux not to daemonize, useful both for running anicm
2020-05-16Do not need to work out status line offset, we already have it.nicm
2020-05-16Do not hoke into struct window_pane from the tty code and instead setnicm
2020-05-16Rename and tidy some stuff in struct tty_ctx.nicm
2020-05-16Drop having a separate type for style options and make them all strings,nicm
2020-05-16Use a grid cell not a style for the pane style.nicm
2020-05-16Add extension terminfo(5) capabilities for margins.nicm
2020-05-16Remove support for iTerm2's DSR 1337 extension and use the CSI > qnicm
2020-04-21Do not clear client pane redraw flags until the redraw actually happens.nicm
2020-04-20Apply terminal-overrides after terminal detection, it always takesnicm
2020-04-20Change how sync works to always send the end sequence after all outputnicm
2020-04-20Change the Sync capability to be a string instead of a flag.nicm
2020-04-20Tidy up the terminal detection and feature code and add named sets ofnicm
2020-04-18Bring back previons fix to only redraw panes that need it after a redrawnicm
2020-04-18Add a flag to protect against nested syncs and add some extra logging tonicm
2020-04-18Revert previous, there is still a problem.nicm
2020-04-18When a redraw is deferred because the terminal hasn't finished readingnicm
2020-04-17Set mode properly before and after redrawing, and don't bothernicm
2020-04-17Do not move the cursor to the existing y position if it is invalid, gonicm
2020-04-17Support the application escape sequence mintty (means tmux doesn't havenicm
2020-04-16Send secondary device attributes instead of primary which gives us a bitnicm
2020-04-16Move the UTF-8 flag to terminal flags.nicm
2020-04-16Add a helper function to get the terminal flags.nicm
2020-04-16Add support for the iTerm2 sychronized updates escape sequence whichnicm
2020-04-09Wait until the initial command sequence is done before sending a devicenicm
2020-03-24Add support for overlay popup boxes to show text or output temporarilynicm
2020-03-17Do not return early if no bits changed because may still need to change the s...nicm
2020-03-16VTE treats each mouse mode bit as independent, so turning off 1000nicm
2020-03-16Turn off mouse mode 1003 as well as the rest when exiting.nicm
2020-01-29Do not send DA and DSR again if already have a response.nicm
2020-01-28If we can identify the terminal as iTerm2 or as tmux, we can be surenicm
2020-01-13Stop handling DA and DSR after a second (they should be the first thingnicm
2020-01-13Be more specific in the DSR we are looking for so it doesn't getnicm
2020-01-12Detect iTerm2 and enable DECSLRM.nicm
2020-01-12The terminal type was never as much use as I expected so remove it innicm
2019-12-11Do not set cursor colour to default unless it has been changed, GitHubnicm
2019-11-28Long lines and spacing fixes.nicm
2019-11-28Store xpixel/ypixel from TIOCGWINSZ and add formats.nicm
2019-11-14CUB and CUF are also limited by the margins so use CUP instead whennicm
2019-09-19Do not use bright when emulating 256 colours on an 8 colour terminalnicm
2019-08-05Add support for the SD (scroll down) escape sequence, GitHub issue 1861.nicm
2019-08-01xterm 348 now disables margins when resized, so send DECLRMM again.nicm
2019-07-16Fix check for wrapping when redrawing entire lines, GitHub issue 1836.nicm