Fixed numbers not highlighting after space
(cherry picked from commit cd07badee3
)
This commit is contained in:
parent
729dc5da83
commit
26f2b7415c
|
@ -44,7 +44,7 @@ static bool _is_text_char(CharType c) {
|
|||
|
||||
static bool _is_symbol(CharType c) {
|
||||
|
||||
return c!='_' && ((c>='!' && c<='/') || (c>=':' && c<='@') || (c>='[' && c<='`') || (c>='{' && c<='~') || c=='\t');
|
||||
return c!='_' && ((c>='!' && c<='/') || (c>=':' && c<='@') || (c>='[' && c<='`') || (c>='{' && c<='~') || c=='\t' || c==' ');
|
||||
}
|
||||
|
||||
static bool _is_char(CharType c) {
|
||||
|
|
Loading…
Reference in New Issue