Topic Sequence of keystrokes to single character output

We have two new locations for Keyman technical support:

The Tavultesoft Forums are now read only.


# Sequence of keystrokes to single character output   2016-03-08 04:22:47.523
Stefan Daehler
I understand, that dead keys in Keyman Developer have to be inserted in the code directly. Taking an example from an older thread at this forum, I tried to write the required instructions. I failed. Thus, I were grateful if an experienced user could give me some sample code I could adapt.

I'd require to implement sequences of the following type:

Input: ka - ha -> Output: kha
Unicode: U+1C00 + U+1C1D = U+1C02

Input: ka - la -> Output: kla
Unicode: U+1C00 + U+1C1C = U+1C01

Input: ka- ra -> Output: kra
Unicode: U+1C00 + U+1C25 = U+1C001C25

Input: ka - ya -> Output: kya
Unicode: U+1C00 + U+1C24 = U+1C001C24

Input: ka - ra - ya -> Output: krya
Unicode: U+1C00 + U+1C25 + U+1C24 = U+1C001C251C24

Best thanks in advance.
# RE: Sequence of keystrokes to single character output   2016-03-09 08:59:52.030
Marc Durdin
Tavultesoft Staff
Probably best to start with the tutorial: http://help.keyman.com/developer/9.0/guides/develop/tutorial/

Step 5 in the tutorial talks about rule context which covers what you are looking for to solve this.