From c6774196ea57f30026e4aa7f126a6202f0fdd865 Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sat, 18 Apr 2026 16:18:13 +0200 Subject: Add more symbols to superscript and small_caps (#1198) * Add more symbols to accent_syperscript * Add all uppercase and lowercase variants to accent_small_caps * Use ʁ instead of ᴚ in accent_small_caps--- test/juloo.keyboard2/ComposeKeyTest.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test') diff --git a/test/juloo.keyboard2/ComposeKeyTest.java b/test/juloo.keyboard2/ComposeKeyTest.java index a3d1ddb..2aad106 100644 --- a/test/juloo.keyboard2/ComposeKeyTest.java +++ b/test/juloo.keyboard2/ComposeKeyTest.java @@ -48,6 +48,11 @@ public class ComposeKeyTest int state = ComposeKeyData.shift; assertEquals(apply("𝕨", state), KeyValue.makeStringKey("𝕎")); assertEquals(apply("𝕩", state), KeyValue.makeStringKey("𝕏")); + state = ComposeKeyData.accent_small_caps; + assertEquals(apply("œ", state), KeyValue.makeStringKey("ɶ")); + assertEquals(apply("Œ", state), KeyValue.makeStringKey("ɶ")); + assertEquals(apply("ɹ", state), KeyValue.makeStringKey("ʁ")); + assertEquals(apply("ɠ", state), KeyValue.makeStringKey("ʛ")); } KeyValue apply(String seq) -- cgit v1.2.3