From c669a755a69c68203f11684366dfbb4732b154da Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sun, 18 Jan 2026 21:57:17 +0100 Subject: 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--- srcs/juloo.keyboard2/KeyModifier.java | 1 + 1 file changed, 1 insertion(+) (limited to 'srcs/juloo.keyboard2/KeyModifier.java') 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; -- cgit v1.2.3