diff options
author | June McEnroe <june@causal.agency> | 2020-03-31 10:50:42 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-03-31 10:50:42 -0400 |
commit | 13ae7cec5907ed98fb916b9c0b0ae6ab5ba26e85 (patch) | |
tree | 728ccef1ee023169081ecca68ca90cd447a22ffe /edit.c | |
parent | Replace int opt; while with for loop in sandman (diff) | |
download | catgirl-13ae7cec5907ed98fb916b9c0b0ae6ab5ba26e85.tar.gz catgirl-13ae7cec5907ed98fb916b9c0b0ae6ab5ba26e85.zip |
Add \bear, \cool, \hug, \unflip, \wave
Diffstat (limited to 'edit.c')
-rw-r--r-- | edit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/edit.c b/edit.c index d9839ea..9a368b8 100644 --- a/edit.c +++ b/edit.c @@ -76,11 +76,16 @@ static const struct { const wchar_t *name; const wchar_t *string; } Macros[] = { + { L"\\bear", L"ʕっ•ᴥ•ʔっ" }, + { L"\\cool", L"(⌐■_■)" }, { L"\\flip", L"(╯°□°)╯︵ ┻━┻" }, { L"\\gary", L"ᕕ( ᐛ )ᕗ" }, + { L"\\hug", L"(っ・∀・)っ" }, { L"\\lenny", L"( ͡° ͜ʖ ͡°)" }, { L"\\look", L"ಠ_ಠ" }, { L"\\shrug", L"¯\\_(ツ)_/¯" }, + { L"\\unflip", L"┬─┬ノ(º_ºノ)" }, + { L"\\wave", L"ヾ(^∇^)" }, }; void editCompleteAdd(void) { |