summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-31 18:58:45 -0500
committerJune McEnroe <june@causal.agency>2020-12-31 18:58:45 -0500
commit3322c6161436098504dbf467bd1973cadc7f2712 (patch)
tree124e627d6f6aaaf554b3132e52329cb6ab8dc623
parentSimplify bit lexing and parsing (diff)
downloadsrc-3322c6161436098504dbf467bd1973cadc7f2712.tar.gz
src-3322c6161436098504dbf467bd1973cadc7f2712.zip
Add ASCII control code names to bit
-rw-r--r--bin/bit.y13
1 files changed, 11 insertions, 2 deletions
diff --git a/bin/bit.y b/bin/bit.y
index ed03eb97..6ef8ade1 100644
--- a/bin/bit.y
+++ b/bin/bit.y
@@ -159,6 +159,14 @@ static int yylex(void) {
 	}
 }
 
+static const char *Codes[128] = {
+	"NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
+	"BS",  "HT",  "NL",  "VT",  "NP",  "CR",  "SO",  "SI",
+	"DLE", "DC1", "DC2", "DC3", "DC4", "NAK", "SYN", "ETB",
+	"CAN", "EM",  "SUB", "ESC", "FS",  "GS",  "RS",  "US",
+	[127] = "DEL",
+};
+
 static void print(uint64_t val) {
 	int bits = val > UINT32_MAX ? 64
 		: val > UINT16_MAX ? 32
@@ -172,8 +180,9 @@ static void print(uint64_t val) {
 		}
 		printf(" %#"PRIo64" 0b%s", val, bin);
 	}
-	if (val < 128 && isprint(val)) {
-		printf(" '%c'", (char)val);
+	if (val < 128) {
+		if (isprint(val)) printf(" '%c'", (char)val);
+		if (Codes[val]) printf(" %s", Codes[val]);
 	}
 	if (val) {
 		if (!(val & MASK(40))) {
macOS, but I feel like my eyes are working harder here. 2021-02-07Fully configure and rebind cwmJune McEnroe This is sort of a mix of trying to emulate macOS somewhat for my muscle memory and just rebinding some of the cwm defaults to use 4- rather than M-. 2021-02-07Add BintiJune McEnroe 2021-02-07Finish configuring xtermJune McEnroe 2021-02-06Enable tapping, reverse scroll, set scaling in wsconsctlJune McEnroe 2021-02-06Set root window to black on purple snowJune McEnroe 2021-02-06Add xmodmap configurationJune McEnroe 2021-02-06Add initial OpenBSD X configurationJune McEnroe cwm still needs a lot more rebinding, and I need to actually look at its other options. xterm definitely still needs some configuration, but I at least managed to get it to use a decent looking font. Very happy that OpenBSD includes Luxi Mono, which is what my usual font, Go Mono, is based on anyway. Still missing is xmodmap and such. 2021-02-06Add xterm output to schemeJune McEnroe