summaryrefslogtreecommitdiffstats
path: root/screen-write.c
AgeCommit message (Expand)Author
2012-07-10xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott
2012-03-17Revert screen-write.c r1.54 and fix the bug properly. After wrapping aNicholas Marriott
2012-03-14Store context off before moving the cursor when wrapping, to fix longNicholas Marriott
2012-03-03Support "bracketed paste" mode. This adds a -p flag to paste-buffer - ifNicholas Marriott
2012-01-21Add a -R flag to send-keys to reset the terminal. Written ages ago andNicholas Marriott
2011-10-23Support for \e[3J to clear the history. Also send the correspondingNicholas Marriott
2011-05-18Support setting the xterm clipboard when copying from copy mode usingNicholas Marriott
2011-04-17Fix character position check, from Tiago Resende.Nicholas Marriott
2011-03-26Fix to properly wrap wide characters, from Micah Cowan.Nicholas Marriott
2011-03-07Support passing through escape sequences to the underlying terminal byNicholas Marriott
2011-01-25When clearing the entire screen, clear lines that are used into theNicholas Marriott
2011-01-03Support for UTF-8 mouse input (\033[1005h). This was added in xterm 262Nicholas Marriott
2010-12-29Support all four of the xterm mouse modes. Based on a diff from hsim atNicholas Marriott
2010-06-21Ensure we overwrite UTF-8 wide characters properly, and never overwriteNicholas Marriott
2010-04-06Merge copy mode and output mode, dropping the latter. Idea and code fromNicholas Marriott
2009-12-03Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastNicholas Marriott
2009-11-26Remove a couple of unused arguments where possible, and add /* ARGSUSED */ toNicholas Marriott
2009-11-18Cleanup by moving various (mostly horrible) little bits handling UTF-8 gridNicholas Marriott
2009-11-16A screen can be one cell wide; don't crash if that is the case.Nicholas Marriott
2009-11-11Add an explicit zero-length check for UTF-8 input data, prompted by a reportNicholas Marriott
2009-10-20Try to reduce the UTF-8 mess.Nicholas Marriott
2009-10-20UTF-8 combined character fixes.Nicholas Marriott
2009-10-20Move the check for whether to force a line wrapper lower down into the tty codeNicholas Marriott
2009-10-17Always move the cursor position on !xenl terminals, since there is no invisibleNicholas Marriott
2009-10-17Don't print wide characters at screen width - 1. Matches uterm behaviour andNicholas Marriott
2009-10-17Instead of having a complicated check to see if the cursor is in the lastNicholas Marriott
2009-10-12When drawing lines that have wrapped naturally, don't force a newline butNicholas Marriott
2009-10-12When backspace is received at the beginning of a line and the previous line wasNicholas Marriott
2009-10-12Wrap a couple of long lines.Nicholas Marriott
2009-10-12Permit attributes to be turned off in #[] by prefixing with "no", for exampleNicholas Marriott
2009-09-15Stick line length to what is actually used (removing an optimization thatNicholas Marriott
2009-09-10Permit options such as status-bg to be configured using the entire 256 colourNicholas Marriott
2009-09-07Permit embedded colour and attributes in status-left and status-right using newNicholas Marriott
2009-08-21Ugh, committed the wrong version of this change and got both solutions ratherNicholas Marriott
2009-08-20A few trivial optimisations: no need to check for zero size if callingNicholas Marriott
2009-08-13It was originally intended that scroll mode would show content that wasNicholas Marriott
2009-08-08Add a flags member to the grid_line struct and use it to differentiate linesNicholas Marriott
2009-07-30Plug some memory leaks.Nicholas Marriott
2009-07-27Draw UTF-8 characters under the selection correctly.Nicholas Marriott
2009-07-22More tty code tidying: move the saved cursor/region position (from before theNicholas Marriott
2009-07-22enum tty_cmd is only used as an index into the array of command functionNicholas Marriott
2009-07-22There are relatively few arguments to tty_cmd_* functions now, so tidy them upNicholas Marriott
2009-07-22tty_cmd_raw is only used once, for raw UTF-8 output, so rename it toNicholas Marriott
2009-07-14The scroll region cannot be one line only, ignore attempts to make it so.Nicholas Marriott
2009-07-09Cursor up and down should be limited by the scroll region (cuu should stop atNicholas Marriott
2009-07-09Change inserting and deleting lines inside the scroll region to properly clearNicholas Marriott
2009-07-09Tidy by removing unused argument from grid_view_{insert,delete}_line_regionNicholas Marriott
2009-06-29Fix two errors with character/line insertion and deletion: the maximum numberNicholas Marriott
2009-06-26Status line fixes: don't truncate status-right now the length calculation isNicholas Marriott
2009-06-05Remove trailing newlines, spaces, and tabs.Ray Lai