mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 07:06:18 +02:00
Auto save on (semi)colon and question/exclamation mark too
This commit is contained in:
@@ -2329,8 +2329,11 @@ public class Helper {
|
||||
};
|
||||
}
|
||||
|
||||
static boolean isDot(char c) {
|
||||
return (c == '.' /* Latin */ || c == '。' /* Chinese */);
|
||||
static boolean isEndChar(char c) {
|
||||
return (c == '.' /* Latin */ ||
|
||||
c == '。' /* Chinese */ ||
|
||||
c == ':' || c == ';' ||
|
||||
c == '?' || c == '!');
|
||||
}
|
||||
|
||||
static String trim(String value, String chars) {
|
||||
|
||||
Reference in New Issue
Block a user