-
-
Notifications
You must be signed in to change notification settings - Fork 19
Add keyboard labels symbols #164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
203be55
cbd98e8
1dafd7b
57758e8
f28fa3a
e329d2c
c77bb2b
0346b5e
87d75a9
013383b
4c50d3d
51205ed
660f3bb
07f273f
3510eba
f8df219
c75eab0
050cb9e
9968a54
0777363
646da5e
80b1cb1
c4031b1
a9a97af
6ba4e04
e5a3dc4
9235d7a
79a83e6
610dc9d
6e7026a
6bf7dac
8968db1
81e077f
2905fcc
a10ef56
7e5a054
1a7fef2
e0dea11
ccc78bc
fc512da
2bed8ca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1266,9 +1266,6 @@ errorbar | |
| .circle.stroked ⧲ | ||
| .circle.filled ⧳ | ||
|
|
||
| // Keyboard labels. | ||
| spacebar ␣ | ||
|
|
||
| gender { | ||
| female ♀\vs{text} | ||
| .double ⚢ | ||
|
|
@@ -1323,3 +1320,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 ⇳ | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this a real keyboard key? |
||
| space ␣ | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this even present on actual keyboards? I feel like most keyboards simply do not have any symbol on the space bar. |
||
| erase | ||
| .r ⌦ | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this present on any real world keyboard?
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mine uses a filled version of U+2326 with a white cross for delete, next to "delete" written out on the key. |
||
| .l ⌫ | ||
| cmd ⌘ | ||
| option ⌥ | ||
| clear ⌧ | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this a real key on contemporary keyboards?
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My Apple keyboard has it (U+2327, tho the X slightly pokes out). But I have no clue what it was meant to represent, since I'm using this keyboard on Linux, where it maps to num lock.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This keyboard has U+2327. |
||
| alt ⎇ | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you have evidence of contemporary keyboards that use this symbol? |
||
| esc ⎋ | ||
| .alt ⮹ | ||
| decimalsep ⎖ | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What key is that? |
||
| printscreen ⎙ | ||
| return ⏎ | ||
| .alt ↵ | ||
| newline | ||
| .alt ↵ | ||
| .l ⮒ | ||
| .r ⮓ | ||
|
Comment on lines
+1355
to
+1358
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there any contemporary keyboard that has a separate key for newline that is not just the Enter key?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I sometimes find keyboards with a key for 'Enter' and a key for 'Return' (e.g. this one) often when the keyboard has a numeric pad. I propose to keep either ('enter' and 'return') or ('newline' and 'return') or keep only one name, in which case I would favor 'enter', tell me what you think. |
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the default for this one not the same as for
home?