diff options
| author | Jules Aguillon | 2024-05-26 00:49:15 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2024-05-26 00:49:15 +0200 |
| commit | 46f3b41393545790b8a7be87cc0e97bcdecc30f9 (patch) | |
| tree | e254ab7926d82c08248258eb299b4ab83d302ba1 /srcs/juloo.keyboard2 | |
| parent | bea2e6cd1fc41da085416c9778ed1ab6d81767c8 (diff) | |
| download | unexpected-keyboard-46f3b41393545790b8a7be87cc0e97bcdecc30f9.tar.gz unexpected-keyboard-46f3b41393545790b8a7be87cc0e97bcdecc30f9.zip | |
Support the nnbsp character
Diffstat (limited to 'srcs/juloo.keyboard2')
| -rw-r--r-- | srcs/juloo.keyboard2/KeyValue.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/KeyValue.java b/srcs/juloo.keyboard2/KeyValue.java index e9e66cc..bb83623 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -503,6 +503,7 @@ public final class KeyValue implements Comparable<KeyValue> case "\\n": return charKey("\\n", '\n', 0); // Send the newline character case "space": return charKey(0xE00D, ' ', FLAG_KEY_FONT | FLAG_SMALLER_FONT | FLAG_GREYED); case "nbsp": return charKey("\u237d", '\u00a0', FLAG_SMALLER_FONT); + case "nnbsp": return charKey("\u2423", '\u202F', FLAG_SMALLER_FONT); /* bidi */ case "lrm": return charKey("↱", '\u200e', 0); // Send left-to-right mark |
