diff options
| author | Jules Aguillon | 2025-01-02 11:08:04 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2025-01-02 11:08:04 +0100 |
| commit | 56c62a005d0afde3f525da9beb47c2ac834cb7df (patch) | |
| tree | ca51af0ee0cf1bcf4995b9ce851f239163802d4a /srcs/juloo.keyboard2/prefs | |
| parent | 115eda408496ec5bf149fe23525786fcdcfb5257 (diff) | |
| download | unexpected-keyboard-56c62a005d0afde3f525da9beb47c2ac834cb7df.tar.gz unexpected-keyboard-56c62a005d0afde3f525da9beb47c2ac834cb7df.zip | |
Add zwj, zwnj, nbsp, nnbsp to extra keys preferences
Diffstat (limited to 'srcs/juloo.keyboard2/prefs')
| -rw-r--r-- | srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java b/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java index 08260aa..92c7d3a 100644 --- a/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java +++ b/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java @@ -51,6 +51,10 @@ public class ExtraKeysPreference extends PreferenceCategory "†", "ª", "º", + "zwj", + "zwnj", + "nbsp", + "nnbsp", "tab", "esc", "page_up", @@ -164,6 +168,10 @@ public class ExtraKeysPreference extends PreferenceCategory case "ª": id = R.string.key_descr_ª; break; case "º": id = R.string.key_descr_º; break; case "switch_clipboard": id = R.string.key_descr_clipboard; break; + case "zwj": id = R.string.key_descr_zwj; break; + case "zwnj": id = R.string.key_descr_zwnj; break; + case "nbsp": id = R.string.key_descr_nbsp; break; + case "nnbsp": id = R.string.key_descr_nnbsp; break; case "combining_dot_above": case "combining_double_aigu": |
