summaryrefslogtreecommitdiffstats
path: root/src/screen.h
Commit message (Collapse)AuthorAgeFilesLines
* track dirty at the row/cell level in addition to the full screendirty-cellsJesse Luehrs2016-05-121-0/+2
| | | | still not great (especially when scrolling), but should help?
* need stddef.h for size_tJesse Luehrs2016-05-071-0/+1
|
* handle moving and scrolling separatelyJesse Luehrs2016-05-041-1/+3
| | | | | | | only lf/ri should be scrolling, and only if they start on the border of the scroll region and try to move off of it. also, all absolute movement should be absolute in the context of the full terminal, but relative vertical movement should be clamped to the scroll regions.
* make this publicJesse Luehrs2015-08-201-0/+1
|
* selection shouldn't be a property of the screenJesse Luehrs2015-08-191-5/+0
|
* implement scroll up and scroll down escape sequencesJesse Luehrs2014-10-211-0/+2
|
* in fact, only line feed/reverse line feed should cause scrollingJesse Luehrs2014-10-201-1/+1
| | | | aside from displaying text, of course
* implement ECHJesse Luehrs2014-10-171-0/+1
|
* hide the parser stateJesse Luehrs2014-09-171-8/+2
| | | | | | this shouldn't be public (none of the parser stuff should be), but the way i was doing before with redefining certain types from parser.h was causing warnings on clang.
* these mouse reporting modes are probably also worthwhile to supportJesse Luehrs2014-09-171-0/+6
| | | | | this doesn't really affect anything, but it'll be useful for runes eventually
* split get_string into get_string_plaintext and get_string_formattedJesse Luehrs2014-09-161-1/+4
|
* stop hardcoding the default scrollback lengthJesse Luehrs2014-09-141-0/+4
|
* allow specifying a size to resize toJesse Luehrs2014-09-141-2/+2
| | | | | this used to just calculate it manually from the size of the x window, but we don't have that now
* whoops, already had this functionJesse Luehrs2014-09-131-1/+1
|
* add a function to get a cell at a given row and columnJesse Luehrs2014-09-131-0/+1
|
* add functions to allocate memory for the screen tooJesse Luehrs2014-09-131-0/+2
|
* initial commit, splitting this out from runesJesse Luehrs2014-09-131-0/+175