aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* commentJesse Luehrs2014-04-212-0/+2
|
* alt+key should send escape+keyJesse Luehrs2014-04-211-0/+3
|
* fix scrollingJesse Luehrs2014-04-211-8/+6
| | | | | | | the documentation is unclear here - it says that scroll regions define the bounds of all scroll and cursor motion operations, but apparently absolute cursor positioning is not considered a "cursor motion operation".
* quiet another unused escape sequence warningJesse Luehrs2014-04-212-0/+48
|
* use the right function hereJesse Luehrs2014-04-212-2/+2
|
* support 16 colors, 256 colors, and arbitrary rgb colorsJesse Luehrs2014-04-216-35/+491
|
* one more leakJesse Luehrs2014-04-211-0/+1
|
* implement RIS (for reset)Jesse Luehrs2014-04-212-302/+343
|
* use the fg color for visual bell, don't just assume whiteJesse Luehrs2014-04-211-4/+1
|
* refactorJesse Luehrs2014-04-211-150/+206
|
* support basic mouse eventsJesse Luehrs2014-04-214-0/+87
|
* some alternate escape sequences for using the alternate bufferJesse Luehrs2014-04-211-0/+2
|
* allow configuring the color of the mouse cursorJesse Luehrs2014-04-213-2/+23
|
* add documentation on escape sequencesJesse Luehrs2014-04-201-0/+9690
| | | | | i found this a while ago, but i have no idea where it's from - make sure i don't lose it
* quiet some warnings about intentionally ignored escape sequencesJesse Luehrs2014-04-202-311/+360
| | | | | i'm not planning on supporting switching character sets, so i don't really care about getting warnings about these escape sequences
* allow multi-word commandsJesse Luehrs2014-04-201-1/+6
|
* reorganize a bitJesse Luehrs2014-04-201-2/+2
|
* also allow command line argumentsJesse Luehrs2014-04-201-3/+23
|
* clean up some more memoryJesse Luehrs2014-04-203-1/+7
|
* clean up the directory structure a bitJesse Luehrs2014-04-2016-67/+77
|
* support audible bells (with a config option to disable them)Jesse Luehrs2014-04-206-3/+39
|
* report errors when exec failsJesse Luehrs2014-04-201-0/+10
|
* search $PATH for commandsJesse Luehrs2014-04-201-1/+1
|
* allow customizing the command to be runJesse Luehrs2014-04-203-5/+13
|
* allow blank lines and commentsJesse Luehrs2014-04-201-0/+4
|
* allow configuring the default color set tooJesse Luehrs2014-04-202-18/+36
|
* allow configuring the default window sizeJesse Luehrs2014-04-203-2/+23
|
* allow configuring fg and bg default colorsJesse Luehrs2014-04-202-3/+33
|
* missed a couple that should be bgdefaultJesse Luehrs2014-04-201-2/+2
|
* allow configuring the interpretation of boldJesse Luehrs2014-04-203-5/+42
|
* start adding configurationJesse Luehrs2014-04-206-6/+129
|
* alignmentJesse Luehrs2014-04-192-67/+67
|
* missed oneJesse Luehrs2014-04-192-3/+5
|
* also handle splitting utf8 characters across readsJesse Luehrs2014-04-192-175/+185
|
* handle escape codes split across readsJesse Luehrs2014-04-196-267/+311
|
* handle inverted textJesse Luehrs2014-04-195-7/+46
|
* fix cyanJesse Luehrs2014-04-191-2/+2
|
* handle default colors betterJesse Luehrs2014-04-192-17/+48
|
* hardcode the font that i like for nowJesse Luehrs2014-04-191-1/+1
|
* use brighter colors for boldJesse Luehrs2014-04-195-30/+48
|
* don't need to track this separatelyJesse Luehrs2014-04-192-5/+2
| | | | | the only time alternate_cr will be set is when the alternate screen is enabled, so just use that
* free a few more thingsJesse Luehrs2014-04-191-3/+13
|
* let pango draw underlines instead of doing it manuallyJesse Luehrs2014-04-192-19/+10
|
* restore bold and italic functionalityJesse Luehrs2014-04-192-12/+17
|
* fix accidental fallthroughJesse Luehrs2014-04-192-0/+4
|
* need to clear two cells before drawing a wide characterJesse Luehrs2014-04-191-7/+7
|
* handle wide charactersJesse Luehrs2014-04-191-3/+14
| | | | | | the cursor doesn't handle wide characters though - this won't be possible until i actually do start keeping a logical layout of the terminal screen rather than just the image
* apparently digit width is more reliableJesse Luehrs2014-04-191-1/+1
| | | | char_width may be affected by double-width characters in some cases
* better implementation of non-ascii text drawingJesse Luehrs2014-04-191-2/+39
|
* use PANGO_PIXELS instead of PANGO_SCALEJesse Luehrs2014-04-181-4/+5
|