Adjust compose sequences

This commit is contained in:
Andrew Kvalheim 2024-02-08 15:49:40 -08:00
parent 8a7f50eaac
commit 382fb3feb5
2 changed files with 7 additions and 3 deletions

View file

@ -6,7 +6,7 @@
"" = " 0"; # figure space "" = " 0"; # figure space
"" = " ,"; # thin space "" = " ,"; # thin space
"" = " m"; # em space "" = " m"; # em space
" " = " -"; # non-breaking space " " = " _"; # non-breaking space
" " = " "; # horizontal tab " " = " "; # horizontal tab
"" = " z"; # zero-width space "" = " z"; # zero-width space
"" = " j"; # zero-width non-joiner "" = " j"; # zero-width non-joiner
@ -22,7 +22,7 @@
"" = "--"; # em dash "" = "--"; # em dash
"" = "-n"; # en dash "" = "-n"; # en dash
"­" = "-?"; # soft hyphen "­" = "-?"; # soft hyphen
"" = "-;"; # non-breaking hyphen "" = "-_"; # non-breaking hyphen
"" = "-."; # bullet "" = "-."; # bullet
"°" = "oo"; # degree "°" = "oo"; # degree
"" = ".|"; # vertical ellipsis "" = ".|"; # vertical ellipsis
@ -134,8 +134,10 @@
"" = "no"; # cross mark (emoji variation) "" = "no"; # cross mark (emoji variation)
"" = "ye"; # white heavy check mark "" = "ye"; # white heavy check mark
"🤷" = "shr"; # shrug "🤷" = "shr"; # shrug
"🙃" = "(:"; # upside-down face
"🙄" = "ey"; # face with rolling eyes
# Snippets # Snippets
"https://" = "h/"; "https://" = "ht";
}; };
} }

View file

@ -54,6 +54,8 @@ let
"?" = "question"; "?" = "question";
"." = "period"; "." = "period";
"'" = "apostrophe"; "'" = "apostrophe";
"(" = "parenleft";
")" = "parenright";
"\"" = "quotedbl"; "\"" = "quotedbl";
"/" = "slash"; "/" = "slash";
"`" = "grave"; "`" = "grave";