summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-07-11 17:44:39 -0400
committerJune McEnroe <june@causal.agency>2019-07-11 17:44:39 -0400
commitc1c48e921cf416605f2b6e22e15a20a3b46df02e (patch)
tree511fda43f25464e1ff621575f4434d902d2151ce
parentUse inline style rather than <b>, <i>, <u> (diff)
downloadsrc-c1c48e921cf416605f2b6e22e15a20a3b46df02e.tar.gz
src-c1c48e921cf416605f2b6e22e15a20a3b46df02e.zip
Interpret 256color-style SGRs
-rw-r--r--bin/shotty.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/shotty.c b/bin/shotty.c
index 68a2f03d..6003146c 100644
--- a/bin/shotty.c
+++ b/bin/shotty.c
@@ -181,6 +181,14 @@ static char updateCSI(wchar_t ch) {
 		break; case RM: // ignore
 
 		break; case SGR: {
+			if (ps[0] == 38 && ps[1] == 5) {
+				style.fg = ps[2];
+				break;
+			}
+			if (ps[0] == 48 && ps[1] == 5) {
+				style.bg = ps[2];
+				break;
+			}
 			for (uint i = 0; i < p + 1; ++i) {
 				switch (ps[i]) {
 					break; case 0: style = def;
modeJune McEnroe This doesn't yet work in Terminal.app: <https://github.com/neovim/neovim/issues/9598>. 2019-02-10Add plain text "language" to hiJune McEnroe 2019-02-10Don't match DQ string inside SQ stringJune McEnroe 2019-02-10Skip only one character if a match fails due to parentJune McEnroe Really it should skip forward until the parent changes, but this is simpler. 2019-02-10Remove pattend from hiJune McEnroe 2019-02-10Replace uses of pattend with newline patternsJune McEnroe 2019-02-10Add hi debug outputJune McEnroe 2019-02-10Actually do HTML &quot; escapingJune McEnroe 2019-02-10Set git commit.verboseJune McEnroe 2019-02-10Add back missing static keywordJune McEnroe