-
-
Notifications
You must be signed in to change notification settings - Fork 33
Add ES-PT Typesplit keyboard layout XML #155
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
Open
racuna
wants to merge
1
commit into
tribixbite:main
Choose a base branch
from
racuna:typesplit-inspired-layout
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <keyboard name="ES-PT Typesplit" script="latin" bottom_row="false"> | ||
| <row> | ||
| <key width="2" c="e" n="w" s="q" e="é" /> | ||
| <key width="2" c="r" s="t" w="y" /> | ||
| <key width="2" c="@" n="<" s=">" w="(" e=")" ne="_" /> | ||
| <key width="2" c="i" n="ü" s="u" w="ú" e="í" /> | ||
| <key width="2" c="o" n="õ" s="p" w="ó" e="ô" /> | ||
| </row> | ||
|
|
||
| <row> | ||
| <key width="2" c="a" n="qu" s="ã" e="á" w="â" /> | ||
| <key width="2" c="s" e="#" /> | ||
| <key width="2" c="backspace" n="'" s="," /> | ||
| <key width="2" c="d" n="¯\_(ツ)_/¯" s="g" e="f" /> | ||
| <key width="2" c="l" n="k" s="h" w="j" /> | ||
| </row> | ||
|
|
||
| <row> | ||
| <key width="2" c="c" n="ç" s="z" e="x" /> | ||
| <key width="2" c="b" s="v" n=""" /> | ||
| <key width="2" c="shift" s="." w="*" n="-" /> | ||
| <key width="2" c="n" s="ñ" w="¿" e="¡" /> | ||
| <key width="2" c="m" s=":" n=";" w="!" e="\?" /> | ||
| </row> | ||
|
|
||
| <row height="0.95"> | ||
| <key width="1.7" key0="switch_numeric" key1="loc switch_greekmath" key2="loc meta" key3="loc switch_clipboard" key4="ctrl" key7="switch_back_clipboard"/> | ||
| <key width="1.1" key0="switch_emoji" key1="loc alt" key2="loc change_method" key3="fn" key4="config" key7="switch_gif"/> | ||
| <key width="5.4" key0="space" key7="switch_forward" key8="switch_backward" key5="cursor_left" key6="cursor_right"/> | ||
| <key width="1.8" key0="enter" key1="loc voice_typing" key2="action"/> | ||
| </row> | ||
| </keyboard> | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The question mark
?is unnecessarily escaped with a backslash (\?). In XML, the backslash is not an escape character, so this will be parsed literally as\?instead of?. This can cause the key to output a backslash followed by a question mark, or fail to register correctly.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.
For me works with the backslash