Add more characters

This commit is contained in:
Nishi 2026-07-02 10:08:54 +09:00
commit 6eb5a5d80b
2 changed files with 5 additions and 1 deletions

View file

@ -132,7 +132,7 @@ void sj4_ime_key(Sj4Ime* ime, int key) {
goto reconvert;
}
}
} else if('a' <= tolower(key) && tolower(key) <= 'z') {
} else if(('a' <= tolower(key) && tolower(key) <= 'z') || key == '~' || key == ',' || key == '.' || key == '[' || key == ']') {
int i;
if(ime->last != 0) comp(ime);