mirror of
https://github.com/dessalines/thumb-key.git
synced 2025-01-08 15:07:01 +03:00
Update NumericWide (#1211)
* Update NumericWide Optimizing symbols in NumericWide keyboard to use them with ghost keys * Fix lint error
This commit is contained in:
parent
dc8a472096
commit
71bfcab4e5
@ -25,7 +25,7 @@ val WIDE_NUMERIC_KEYBOARD =
|
||||
display = KeyDisplay.TextDisplay(""),
|
||||
action = CommitText("¹"),
|
||||
),
|
||||
bottomLeft = KeyC("_"),
|
||||
bottom = KeyC("_"),
|
||||
bottomRight = KeyC("|"),
|
||||
),
|
||||
KeyItemC(
|
||||
@ -38,13 +38,11 @@ val WIDE_NUMERIC_KEYBOARD =
|
||||
display = KeyDisplay.TextDisplay(""),
|
||||
action = CommitText("²"),
|
||||
),
|
||||
bottomLeft = KeyC(":"),
|
||||
bottomRight = KeyC(";"),
|
||||
),
|
||||
KeyItemC(
|
||||
center = KeyC("3", size = LARGE),
|
||||
swipeType = FOUR_WAY_DIAGONAL,
|
||||
topLeft = KeyC("^"),
|
||||
bottomLeft = KeyC("^"),
|
||||
topRight =
|
||||
KeyC(
|
||||
// secret! (to avoid excessive visual noise)
|
||||
@ -59,8 +57,15 @@ val WIDE_NUMERIC_KEYBOARD =
|
||||
center = KeyC("(", size = LARGE),
|
||||
swipeType = FOUR_WAY_CROSS,
|
||||
top = KeyC("<"),
|
||||
left = KeyC("{"),
|
||||
right = KeyC("["),
|
||||
topLeft = KeyC("{"),
|
||||
left =
|
||||
KeyC(
|
||||
// secret! (to avoid excessive visual noise)
|
||||
display = KeyDisplay.TextDisplay(""),
|
||||
action = CommitText("("),
|
||||
),
|
||||
bottomLeft = KeyC("["),
|
||||
bottom = KeyC(":"),
|
||||
),
|
||||
KeyItemC(
|
||||
center = KeyC("4", size = LARGE),
|
||||
@ -96,8 +101,15 @@ val WIDE_NUMERIC_KEYBOARD =
|
||||
center = KeyC(")", size = LARGE),
|
||||
swipeType = FOUR_WAY_CROSS,
|
||||
top = KeyC(">"),
|
||||
left = KeyC("]"),
|
||||
right = KeyC("}"),
|
||||
topRight = KeyC("}"),
|
||||
right =
|
||||
KeyC(
|
||||
// secret! (to avoid excessive visual noise)
|
||||
display = KeyDisplay.TextDisplay(""),
|
||||
action = CommitText(")"),
|
||||
),
|
||||
bottomRight = KeyC("]"),
|
||||
bottom = KeyC(";"),
|
||||
),
|
||||
),
|
||||
listOf(
|
||||
@ -113,23 +125,23 @@ val WIDE_NUMERIC_KEYBOARD =
|
||||
KeyItemC(
|
||||
center = KeyC("7", size = LARGE),
|
||||
swipeType = FOUR_WAY_DIAGONAL,
|
||||
topLeft = KeyC("="),
|
||||
left = KeyC("@"),
|
||||
top = KeyC("&"),
|
||||
topRight = KeyC("%"),
|
||||
bottomLeft = KeyC("-"),
|
||||
bottom = KeyC("="),
|
||||
bottomRight = KeyC("+"),
|
||||
),
|
||||
KeyItemC(
|
||||
center = KeyC("8", size = LARGE),
|
||||
swipeType = FOUR_WAY_DIAGONAL,
|
||||
topLeft = KeyC("@"),
|
||||
topRight = KeyC("&"),
|
||||
bottomLeft = KeyC("*"),
|
||||
bottomRight = KeyC("#"),
|
||||
),
|
||||
KeyItemC(
|
||||
center = KeyC("9", size = LARGE),
|
||||
swipeType = FOUR_WAY_DIAGONAL,
|
||||
topLeft = KeyC("~"),
|
||||
top = KeyC("~"),
|
||||
bottomLeft = KeyC("\\"),
|
||||
bottomRight = KeyC("/"),
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user