diff --git a/CHANGELOG.md b/CHANGELOG.md index cb7164f..3887303 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -103,9 +103,6 @@ These previously deprecated items were removed: - Currency - `riyal`: ⃁ -- Keyboard labels - - `spacebar`: ␣ - - Printable symbols representing control characters, under a `control` submodule - `nul`: ␀ - `soh`: ␁ @@ -143,6 +140,39 @@ These previously deprecated items were removed: - `del`: ␡ - `nl`: ␤ +- Keyboard labels (in submodule `keyboard`) + - `home` ↸ + - `end`: ⇲ + - `end.alt`: ⭸ + - `tab`: ↹ + - `tab.alt`: ⭾ + - `tab.r`: ⇥ + - `tab.r.alt`: ⭲ + - `pageup`: ⇞ + - `pageup.alt`: ⎗ + - `pagedown`: ⇟ + - `pagedown.alt`: ⎘ + - `shift`: ⇧ + - `capslock`: ⇪ + - `capslock.pedestal`: ⇫ + - `scroll`: ⇳ + - `space`: ␣ + - `erase.r`: ⌦ + - `erase.l`: ⌫ + - `cmd`: ⌘ + - `option`: ⌥ + - `clear`: ⌧ + - `alt`: ⎇ + - `esc`: ⎋ + - `esc.alt`: ⮹ + - `decimalsep`: ⎖ + - `printscreen`: ⎙ + - `return`: ⏎ + - `return.alt`: ↵ + - `newline.l`: ⮒ + - `newline.r`: ⮓ + - `newline.alt`: ↵ + ### New in `emoji` - `bigfoot`: 🫈 diff --git a/src/modules/sym.txt b/src/modules/sym.txt index c0cdbc4..bba3f53 100644 --- a/src/modules/sym.txt +++ b/src/modules/sym.txt @@ -1250,9 +1250,6 @@ errorbar .circle.stroked ⧲ .circle.filled ⧳ -// Keyboard labels. -spacebar ␣ - gender { female ♀\vs{text} .double ⚢ @@ -1307,3 +1304,40 @@ control { del ␡ // DELete nl ␤ // New Line } + +// Characters commonly used as keyboards labels +keyboard { + home ↸ + end ⇲ + .alt ⭸ + tab ↹ + .alt ⭾ + .r ⇥ + .r.alt ⭲ + pageup ⇞ + .alt ⎗ + pagedown ⇟ + .alt ⎘ + shift ⇧ + capslock ⇪ + .pedestal ⇫ + scroll ⇳ + space ␣ + erase + .r ⌦ + .l ⌫ + cmd ⌘ + option ⌥ + clear ⌧ + alt ⎇ + esc ⎋ + .alt ⮹ + decimalsep ⎖ + printscreen ⎙ + return ⏎ + .alt ↵ + newline + .alt ↵ + .l ⮒ + .r ⮓ +}