diff options
| author | C. McEnroe | 2020-03-31 10:50:42 -0400 | 
|---|---|---|
| committer | C. McEnroe | 2020-03-31 10:50:42 -0400 | 
| commit | 13ae7cec5907ed98fb916b9c0b0ae6ab5ba26e85 (patch) | |
| tree | 728ccef1ee023169081ecca68ca90cd447a22ffe | |
| parent | 16b16a72e54e05c5ad2c251c2a9c71a92ff11400 (diff) | |
Add \bear, \cool, \hug, \unflip, \wave
| -rw-r--r-- | edit.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| @@ -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) { | 
