summaryrefslogtreecommitdiffstats
path: root/src/screen.c
Commit message (Collapse)AuthorAgeFilesLines
* fix off by one errorJesse Luehrs2014-10-201-2/+2
|
* normalization may change the length of the utf8 sequenceJesse Luehrs2014-10-201-0/+1
|
* don't add an extra space after wide charactersJesse Luehrs2014-10-181-5/+9
|
* implement ECHJesse Luehrs2014-10-171-0/+21
|
* hide the parser stateJesse Luehrs2014-09-171-5/+13
| | | | | | 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/+20
| | | | | 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-72/+163
|
* writing over the second half of a wide character should clear itJesse Luehrs2014-09-161-4/+28
|
* there's not really a purpose to maintain the selection hereJesse Luehrs2014-09-161-62/+0
| | | | the terminal can't do anything with it, it's only useful at the x layer
* stop hardcoding the default scrollback lengthJesse Luehrs2014-09-141-2/+9
|
* allow specifying a size to resize toJesse Luehrs2014-09-141-9/+9
| | | | | 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-7/+1
|
* heh, oopsJesse Luehrs2014-09-131-2/+2
|
* add a function to get a cell at a given row and columnJesse Luehrs2014-09-131-0/+5
|
* add functions to allocate memory for the screen tooJesse Luehrs2014-09-131-0/+16
|
* initial commit, splitting this out from runesJesse Luehrs2014-09-131-0/+959