Skip to content
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

Swap backspace/delete variant keys #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Additionally, while using the switcher for symbol specification, the `A` and `O`

| symbol pattern | output | name |
|------------------------------------------------|--------|------|
| ![tab Pattern Diagram](img/s-tab.png) | `tab`, `delete`, `backspace`, `escape` | `tab`, `delete`, `backspace`, `escape` |
| ![tab Pattern Diagram](img/s-tab.png) | `tab`, `backspace`, `delete`, `escape` | `tab`, `backspace`, `delete`, `escape` |
| ![arrow Pattern Diagram](img/s-arrow.png) | `up`, `left`, `right`, `down` | `up`, `left`, `right`, `down` |
| ![page Pattern Diagram](img/s-page.png) | `pageup`, `home`, `end`, `pagedown` | `pageup`, `home`, `end`, `pagedown` |
| ![blank Pattern Diagram](img/s-blank.png) | `escape`, `tab`, `return`, ` ` | `escape`, `tab`, `return`, `space` |
Expand Down
2 changes: 1 addition & 1 deletion emily-modifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

# same as emily-symbols format, but modified for use on the left hand
symbols = {
"TR" : ["tab", "delete", "backspace", "escape"],
"TR" : ["tab", "backspace", "delete", "escape"],
"KPWR" : ["up", "left", "right", "down"],
"KPWHR" : ["page_up", "home", "end", "page_down"],
"" : ["", "tab", "return", "space"],
Expand Down