diff options
| author | Jules Aguillon | 2026-01-18 21:57:17 +0100 |
|---|---|---|
| committer | GitHub | 2026-01-18 21:57:17 +0100 |
| commit | c669a755a69c68203f11684366dfbb4732b154da (patch) | |
| tree | dab0afc83d1a44459eff949826fbdb8495bd13ba /srcs/juloo.keyboard2/KeyModifier.java | |
| parent | 3b4aa33ff3744c5de77dc90c0962e7540f1e2afc (diff) | |
| download | unexpected-keyboard-c669a755a69c68203f11684366dfbb4732b154da.tar.gz unexpected-keyboard-c669a755a69c68203f11684366dfbb4732b154da.zip | |
Add the small capital letters dead key (#1156)
* Add the small capital letters dead key
It can be added to the keyboard from the settings or into custom layouts
as `accent_small_caps`.
Add all the symbols listed on https://en.wikipedia.org/wiki/Small_caps
Diffstat (limited to 'srcs/juloo.keyboard2/KeyModifier.java')
| -rw-r--r-- | srcs/juloo.keyboard2/KeyModifier.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/KeyModifier.java b/srcs/juloo.keyboard2/KeyModifier.java index e0705f7..3f5672f 100644 --- a/srcs/juloo.keyboard2/KeyModifier.java +++ b/srcs/juloo.keyboard2/KeyModifier.java @@ -81,6 +81,7 @@ public final class KeyModifier case HORN: return apply_compose(k, ComposeKeyData.accent_horn); case HOOK_ABOVE: return apply_compose(k, ComposeKeyData.accent_hook_above); case DOUBLE_GRAVE: return apply_compose(k, ComposeKeyData.accent_double_grave); + case SMALL_CAPS: return apply_compose(k, ComposeKeyData.accent_small_caps); case ARROW_RIGHT: return apply_combining_char(k, "\u20D7"); case SELECTION_MODE: return apply_selection_mode(k); default: return k; |
