Keyboard doesn't recognize slash+char rule
Brought to you by:
courtjester
All works fine except for the next sequence:
c \
store(specialO) '©ÐðƐɛªǤǥĸ—º–ʼnØø¶℗®§ſ‡†µ×¡¦¨¬¯°±´·¸¿÷‰•¹²³⁴⁵⁶⁷⁸⁹⁰'
store(specialK) "cDdEefGgkMmNnOoPprSsTtux!|:~-_*+'.,?/%>1234567890"
\c became c rather than © and so on.
Didn't check the keyboard on Keyman yet.
"\c" became "c" rather than "©"
I think the problem is with the line
c \
kmfl may be treating the backslash as an escape character. Changing
c \
to
c backslash
allows the keyboard to work correctly.
It works. Thank you!
The ticket can be closed.