abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/prefs
diff options
context:
space:
mode:
authorJules Aguillon2025-01-02 11:08:04 +0100
committerJules Aguillon2025-01-02 11:08:04 +0100
commit56c62a005d0afde3f525da9beb47c2ac834cb7df (patch)
treeca51af0ee0cf1bcf4995b9ce851f239163802d4a /srcs/juloo.keyboard2/prefs
parent115eda408496ec5bf149fe23525786fcdcfb5257 (diff)
downloadunexpected-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.java8
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":