diff options
author | Mark Shoulson <mark@kli.org> | 2012-03-26 13:09:55 -0400 |
---|---|---|
committer | Mark Shoulson <mark@kli.org> | 2012-03-26 13:09:55 -0400 |
commit | d4e93f1cac71687137fba9fe2c250ff30222e599 (patch) | |
tree | 9085e058b87ca6ca0464f45715a31c3e6c1e5bd0 | |
parent | Added non-bolds to frakturcompose (diff) | |
download | dotXCompose-d4e93f1cac71687137fba9fe2c250ff30222e599.tar.gz dotXCompose-d4e93f1cac71687137fba9fe2c250ff30222e599.tar.bz2 dotXCompose-d4e93f1cac71687137fba9fe2c250ff30222e599.zip |
Change syntax for superscripts and doubles.
-rw-r--r-- | dotXCompose | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/dotXCompose b/dotXCompose index e46182a..78e2f02 100644 --- a/dotXCompose +++ b/dotXCompose @@ -664,14 +664,14 @@ include "%L" <Multi_key> <k> <s> : "ʘ" U0298 # LATIN LETTER BILABIAL CLICK (kiss sound) <Multi_key> <bar> <greater> : "‣" U2023 # TRIANGULAR BULLET #SUPERSCRIPTS: -#To avoid namespace clashes, <ampersand> is added -<Multi_key> <asciicircum> <ampersand> <h> : "ʰ" U02B0 # SUPERSCRIPT H -<Multi_key> <asciicircum> <ampersand> <i> : "ⁱ" U2071 # SUPERSCRIPT I -<Multi_key> <asciicircum> <ampersand> <j> : "ʲ" U02B2 # SUPERSCRIPT J -<Multi_key> <asciicircum> <ampersand> <n> : "ⁿ" U207F # SUPERSCRIPT N -<Multi_key> <asciicircum> <ampersand> <r> : "ʳ" U02B3 # SUPERSCRIPT R -<Multi_key> <asciicircum> <ampersand> <w> : "ʷ" U02B7 # SUPERSCRIPT W -<Multi_key> <asciicircum> <ampersand> <y> : "ʸ" U02B8 # SUPERSCRIPT Y +#To avoid namespace clashes, <asciicircum> is doubled (will I regret that?) +<Multi_key> <asciicircum> <asciicircum> <h> : "ʰ" U02B0 # SUPERSCRIPT H +<Multi_key> <asciicircum> <asciicircum> <i> : "ⁱ" U2071 # SUPERSCRIPT I +<Multi_key> <asciicircum> <asciicircum> <j> : "ʲ" U02B2 # SUPERSCRIPT J +<Multi_key> <asciicircum> <asciicircum> <n> : "ⁿ" U207F # SUPERSCRIPT N +<Multi_key> <asciicircum> <asciicircum> <r> : "ʳ" U02B3 # SUPERSCRIPT R +<Multi_key> <asciicircum> <asciicircum> <w> : "ʷ" U02B7 # SUPERSCRIPT W +<Multi_key> <asciicircum> <asciicircum> <y> : "ʸ" U02B8 # SUPERSCRIPT Y #Maybe add: ˀˁ˃˂ Need to be able to talk about ʔˁ... <Multi_key> <asciicircum> <question> <period> : "ˀ" U02C0 # MODIFIER LETTER GLOTTAL STOP <Multi_key> <asciicircum> <question> <parenleft> : "ˁ" U02C1 # MODIFIER LETTER REVERSED GLOTTAL STOP @@ -803,15 +803,26 @@ include "%L" <Multi_key> <backslash> <at> <i> <b> : "̯" U032f # COMBINING INVERTED BREVE BELOW -- ?? # How about leading & (or &&?) for double combiners? There aren't many anyway. +# Except that I found myself assuming it was "2" for double. <Multi_key> <backslash> <ampersand> <at> <U> : "͜" U035C # COMBINING DOUBLE BREVE BELOW +<Multi_key> <backslash> <2> <at> <U> : "͜" U035C # COMBINING DOUBLE BREVE BELOW <Multi_key> <backslash> <ampersand> <U> : "͝" U035D # COMBINING DOUBLE BREVE +<Multi_key> <backslash> <2> <U> : "͝" U035D # COMBINING DOUBLE BREVE <Multi_key> <backslash> <ampersand> <minus> : "͞" U035E # COMBINING DOUBLE MACRON +<Multi_key> <backslash> <2> <minus> : "͞" U035E # COMBINING DOUBLE MACRON <Multi_key> <backslash> <ampersand> <at> <minus> : "͟" U035F # COMBINING DOUBLE MACRON BELOW +<Multi_key> <backslash> <2> <at> <minus> : "͟" U035F # COMBINING DOUBLE MACRON BELOW +<Multi_key> <backslash> <ampersand> <underscore> : "͟" U035F # COMBINING DOUBLE MACRON BELOW +<Multi_key> <backslash> <2> <underscore> : "͟" U035F # COMBINING DOUBLE MACRON BELOW <Multi_key> <backslash> <ampersand> <asciitilde> : "͠" U0360 # COMBINING DOUBLE TILDE +<Multi_key> <backslash> <2> <asciitilde> : "͠" U0360 # COMBINING DOUBLE TILDE <Multi_key> <backslash> <ampersand> <i> <b> : "͡" U0361 # COMBINING DOUBLE INVERTED BREVE +<Multi_key> <backslash> <2> <i> <b> : "͡" U0361 # COMBINING DOUBLE INVERTED BREVE <Multi_key> <backslash> <ampersand> <at> <i> <b> : "᷼" U0361 # COMBINING DOUBLE INVERTED BREVE BELOW +<Multi_key> <backslash> <2> <at> <i> <b> : "᷼" U0361 # COMBINING DOUBLE INVERTED BREVE BELOW # Might as well finish up the set. <Multi_key> <backslash> <ampersand> <greater> : "͢" U0362 # COMBINING DOUBLE RIGHTWARDS ARROW BELOW +<Multi_key> <backslash> <2> <greater> : "͢" U0362 # COMBINING DOUBLE RIGHTWARDS ARROW BELOW <Multi_key> <period> <parenright> : "͒" U0352 # COMBINING FERMATA |