You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Fixed numbers not highlighting after space
This commit is contained in:
@@ -44,7 +44,7 @@ static bool _is_text_char(CharType c) {
|
|||||||
|
|
||||||
static bool _is_symbol(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) {
|
static bool _is_char(CharType c) {
|
||||||
|
|||||||
Reference in New Issue
Block a user