diff options
author | June McEnroe <june@causal.agency> | 2022-02-03 21:50:31 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-02-03 21:50:31 -0500 |
commit | ceee69f905ef59de46da692e4db7b4cd28c95929 (patch) | |
tree | f2a97718ce8af385a4c8e2f93248f3b93d946ff5 /ui.c | |
parent | Avoid sending null byte in SASL PLAIN (diff) | |
download | catgirl-ceee69f905ef59de46da692e4db7b4cd28c95929.tar.gz catgirl-ceee69f905ef59de46da692e4db7b4cd28c95929.zip |
Add C-z s to set spoiler text
Diffstat (limited to 'ui.c')
-rw-r--r-- | ui.c | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/ui.c b/ui.c index 2789bd7..32aaf2b 100644 --- a/ui.c +++ b/ui.c @@ -1041,6 +1041,7 @@ static void keyCtrl(wchar_t ch) { static void keyStyle(wchar_t ch) { uint id = windows.ptrs[windows.show]->id; if (iswcntrl(ch)) ch = towlower(ch ^ L'@'); + char buf[8] = {0}; enum Color color = Default; switch (ch) { break; case L'A': color = Gray; @@ -1055,19 +1056,21 @@ static void keyStyle(wchar_t ch) { break; case L'R': color = Red; break; case L'W': color = White; break; case L'Y': color = Yellow; - break; case L'b': edit(id, EditInsert, B); - break; case L'c': edit(id, EditInsert, C); - break; case L'i': edit(id, EditInsert, I); - break; case L'o': edit(id, EditInsert, O); - break; case L'r': edit(id, EditInsert, R); - break; case L'u': edit(id, EditInsert, U); + break; case L'b': buf[0] = B; + break; case L'c': buf[0] = C; + break; case L'i': buf[0] = I; + break; case L'o': buf[0] = O; + break; case L'r': buf[0] = R; + break; case L's': { + snprintf(buf, sizeof(buf), "%c%02d,%02d", C, Black, Black); + } + break; case L'u': buf[0] = U; } if (color != Default) { - char buf[4]; snprintf(buf, sizeof(buf), "%c%02d", C, color); - for (char *ch = buf; *ch; ++ch) { - edit(id, EditInsert, *ch); - } + } + for (char *ch = buf; *ch; ++ch) { + edit(id, EditInsert, *ch); } } |