Add more characters
This commit is contained in:
parent
28af75999a
commit
6eb5a5d80b
2 changed files with 5 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue