Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,46 @@
- Currency
- `riyal`: ⃁

- Keyboard labels
- `spacebar`: ␣

- Control (Printable symbols representing non-printable characters)
- `nul`: ␀
- `soh`: ␁
- `stx`: ␂
- `etx`: ␃
- `eot`: ␄
- `enq`: ␅
- `ack`: ␆
- `bel`: ␇
- `bs`: ␈
- `ht`: ␉
- `lf`: ␊
- `vt`: ␋
- `ff`: ␌
- `cr`: ␍
- `so`: ␎
- `si`: ␏
- `dle`: ␐
- `dc.one`: ␑
- `dc.two`: ␒
- `dc.three`: ␓
- `dc.four`: ␔
- `nak`: ␕
- `syn`: ␖
- `etb`: ␗
- `can`: ␘
- `em`: ␙
- `sub`: ␚
- `esc`: ␛
- `fs`: ␜
- `gs`: ␝
- `rs`: ␞
- `us`: ␟
- `sp`: ␠
- `del`: ␡
- `nl`: ␤

### New in `emoji`

- bigfoot: 🫈
Expand Down
43 changes: 43 additions & 0 deletions src/modules/sym.txt
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have to say I don't like this breaking words into modifiers just for the sake of it, especially when there's no meaningful default variant.

Original file line number Diff line number Diff line change
Expand Up @@ -1254,6 +1254,9 @@ errorbar
.circle.stroked ⧲
.circle.filled ⧳

// Keyboard labels.
spacebar ␣

gender {
female ♀\vs{text}
.double ⚢
Expand All @@ -1268,3 +1271,43 @@ gender {
neuter ⚲
trans ⚧\vs{text}
}

// Printable characters representing control (non-printable) characters
control {
nul ␀ // NULL
soh ␁ // Start Of Heading
stx ␂ // Start of TeXt
etx ␃ // End of TeXt
eot ␄ // End Of Transmission
enq ␅ // ENQuiry
ack ␆ // ACKnowledge
bel ␇ // BELl
bs ␈ // BackSpace
ht ␉ // Horizontal Tabulation
lf ␊ // Line Feed
vt ␋ // Vertical Tabulation
ff ␌ // Form Feed
cr ␍ // Carriage Return
so ␎ // Shift Out
si ␏ // Shift In
dle ␐ // Data Link Escape
dc // Device Control
.one ␑
.two ␒
.three ␓
.four ␔
nak ␕ // Negative AcKnowledge
syn ␖ // SYNchronous idle
etb ␗ // End of Transmission Block
can ␘ // CANcel
em ␙ // End of Medium
sub ␚ // SUBstitute
esc ␛ // ESCape
fs ␜ // File Separator
gs ␝ // Group Separator
rs ␞ // Record Separator
us ␟ // Unit Separator
sp ␠ // SPace
del ␡ // DELete
nl ␤ // New Line
}
Loading