diff options
| author | Jules Aguillon | 2024-12-29 11:29:58 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2024-12-29 11:29:58 +0100 |
| commit | 12d9e5eaf81f13b9621645b3bf552238b6c73d72 (patch) | |
| tree | 8f9614d8add159f20a98b3966ad4183b9d475df9 /srcs/compose | |
| parent | e594915e805ba2f097bfb0983c07d0a439a739a9 (diff) | |
| download | unexpected-keyboard-12d9e5eaf81f13b9621645b3bf552238b6c73d72.tar.gz unexpected-keyboard-12d9e5eaf81f13b9621645b3bf552238b6c73d72.zip | |
Update Shift mappings for math symbols
Shift is the "not" version of some math operators.
∋ is added to the math layout.
Diffstat (limited to 'srcs/compose')
| -rw-r--r-- | srcs/compose/fn.json | 1 | ||||
| -rw-r--r-- | srcs/compose/shift.json | 13 |
2 files changed, 13 insertions, 1 deletions
diff --git a/srcs/compose/fn.json b/srcs/compose/fn.json index 86d6f6d..30e189a 100644 --- a/srcs/compose/fn.json +++ b/srcs/compose/fn.json @@ -78,7 +78,6 @@ "∪": "⋃", "∩": "⋂", "∃": "∄", - "∈": "∉", "∫": "∮", "Π": "∏", "Σ": "∑", diff --git a/srcs/compose/shift.json b/srcs/compose/shift.json index d37970b..8b87006 100644 --- a/srcs/compose/shift.json +++ b/srcs/compose/shift.json @@ -18,6 +18,13 @@ "┐": "╗", "─": "═", "│": "║", + "∈": "∉", + "∋": "∌", + "⊂": "⊄", + "⊃": "⊅", + "⊆": "⊈", + "⊇": "⊉", + // superscript "ᵃ": "ᴬ", "ᵇ": "ᴮ", @@ -42,18 +49,22 @@ "ʷ": "ᵂ", "ᶾ": "ᴣ", "ᵠ": "ᶲ", + // german eszett has an uppercase, but because it is uncommon, java doesn't know about it "ß": "ẞ", + // these characters don't have a preapplied uppercase version, so we use combining characters "ẗ": "T\u0308", "ẘ": "W\u030A", "ẙ": "Y\u030A", "ǰ": "J\u030C", "ȷ": "J\u0307", + // In Turkish, upper case of 'iı' is 'İI' but Java's toUpperCase will // return 'II'. To make 'İ' accessible, make it the shift of 'ı'. This // has the inconvenient of swapping i and ı on the keyboard. "ı": "İ", + "₹": "₨", // Gujarati alternate characters "અ": "આ", @@ -80,8 +91,10 @@ "લ": "ળ", "સ": "શ", "હ": "ઃ", + // Tamil alternate characters "௹": "₨", + // Modern Hindi and Sanskrit "अ": "आ", "इ": "ई", |
