Skip to content

Commit

Permalink
Update TypeSplitESv1.1.kt (#361)
Browse files Browse the repository at this point in the history
Added # (S key), "Qu" (E key) and "\"" (B key) just to have quick access to some common characters.

I hope it works fine.
  • Loading branch information
racuna committed Aug 23, 2023
1 parent 866d2b7 commit e094ed3
Showing 1 changed file with 38 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ val TYPESPLIT_ES_V1 = KeyboardC(
color = ColorVariant.MUTED,
),
SwipeDirection.LEFT to KeyC(
display = null,
action = KeyAction.CommitText("é"),
display = KeyDisplay.TextDisplay("qu"),
action = KeyAction.CommitText("qu"),
color = ColorVariant.MUTED,
),
SwipeDirection.BOTTOM to KeyC(
display = KeyDisplay.TextDisplay("q"),
Expand Down Expand Up @@ -149,6 +150,18 @@ val TYPESPLIT_ES_V1 = KeyboardC(
size = FontSizeVariant.LARGE,
color = ColorVariant.PRIMARY,
),
swipeType = SwipeNWay.TWO_WAY_HORIZONTAL,
swipes = mapOf(
SwipeDirection.RIGHT to KeyC(
display = KeyDisplay.TextDisplay("#"),
action = KeyAction.CommitText("#"),
color = ColorVariant.MUTED,
),
SwipeDirection.LEFT to KeyC(
display = null,
action = KeyAction.CommitText("#"),
),
),
),
SPACEBAR_TYPESPLIT_MIDDLE_KEY_ITEM,
KeyItemC(
Expand Down Expand Up @@ -239,6 +252,10 @@ val TYPESPLIT_ES_V1 = KeyboardC(
display = KeyDisplay.TextDisplay("v"),
action = KeyAction.CommitText("v"),
),
SwipeDirection.TOP to KeyC(
display = KeyDisplay.TextDisplay("\""),
action = KeyAction.CommitText("\""),
),
),
),
SPACEBAR_TYPESPLIT_BOTTOM_KEY_ITEM,
Expand Down Expand Up @@ -326,8 +343,9 @@ val TYPESPLIT_ES_V1_SHIFTED = KeyboardC(
color = ColorVariant.MUTED,
),
SwipeDirection.LEFT to KeyC(
display = null,
action = KeyAction.CommitText("É"),
display = KeyDisplay.TextDisplay("Qu"),
action = KeyAction.CommitText("Qu"),
color = ColorVariant.MUTED,
),
SwipeDirection.BOTTOM to KeyC(
display = KeyDisplay.TextDisplay("Q"),
Expand Down Expand Up @@ -446,6 +464,18 @@ val TYPESPLIT_ES_V1_SHIFTED = KeyboardC(
size = FontSizeVariant.LARGE,
color = ColorVariant.PRIMARY,
),
swipeType = SwipeNWay.TWO_WAY_HORIZONTAL,
swipes = mapOf(
SwipeDirection.RIGHT to KeyC(
display = KeyDisplay.TextDisplay("#"),
action = KeyAction.CommitText("#"),
color = ColorVariant.MUTED,
),
SwipeDirection.LEFT to KeyC(
display = null,
action = KeyAction.CommitText("#"),
),
),
),
SPACEBAR_TYPESPLIT_MIDDLE_KEY_ITEM,
KeyItemC(
Expand Down Expand Up @@ -536,6 +566,10 @@ val TYPESPLIT_ES_V1_SHIFTED = KeyboardC(
display = KeyDisplay.TextDisplay("V"),
action = KeyAction.CommitText("V"),
),
SwipeDirection.TOP to KeyC(
display = KeyDisplay.TextDisplay("\""),
action = KeyAction.CommitText("\""),
),
),
),
SPACEBAR_TYPESPLIT_BOTTOM_KEY_ITEM,
Expand Down

0 comments on commit e094ed3

Please sign in to comment.