bug fixes

This commit is contained in:
remi 2022-05-07 16:00:05 +02:00
parent ed8226e94f
commit 69647590d9

3
ime.js
View File

@ -40,6 +40,7 @@ class HeonianIME {
"c": "05", "c": "05",
"m": "06", "m": "06",
"j": "07", "j": "07",
"y": "07",
"f": "08", "f": "08",
"t": "09", "t": "09",
"k": "0A", "k": "0A",
@ -453,7 +454,7 @@ class HeonianIME {
}; };
break; break;
case 3: //go to next word uwu case 3: //go to next word uwu
if (this.hVowelsK.includes(key)) { if (this.hVowelsK.includes(key) && this.inputCurrent != "") {
this.inputFull.pop(); this.inputFull.pop();
let ic = this.inputCurrent; let ic = this.inputCurrent;
let k = key; let k = key;