I’m trying to map “a” + “i” > U+0C10.
But ‘a’ is already mapped to a different character (+ “a” > U+0C05).
Since a is already mapped I’m not able figure how can use ‘ai’ combination to get U+0C10.
Any feedback is appreciated.
I’m looking for the solution on Linux/Windows/Mac
Lorna
March 22, 2025, 1:04am
2
You add write a rule like this:
U+0C05 + "i" > U+0C10
Once you’ve typed ‘a’ it became U+0C05 so you put that on the left side of the plus and the keystrokes ‘i’ on the right side.
Hello Lorna,
I thought about this approach. But I would lose the ability to type U+0C05 and U+0C10 successively right? Is there a work around?
Prashanth
drowe
March 22, 2025, 7:26pm
4
IIUC you would type a
, a
, i
.
After typing the first a
the output would be U+0C05.
After the second a
you would have U+0C05 U+0C05.
After the i
the second U+0C05 would be replaced and the output becomes U+0C05 U+0C10.