You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Allow unicode identifier in GDScript syntax highlighter
This commit is contained in:
@@ -307,7 +307,7 @@ Dictionary GDScriptSyntaxHighlighter::_get_line_syntax_highlighting_impl(int p_l
|
||||
in_number = true;
|
||||
}
|
||||
|
||||
if (!in_word && (is_ascii_char(str[j]) || is_underscore(str[j])) && !in_number) {
|
||||
if (!in_word && is_unicode_identifier_start(str[j]) && !in_number) {
|
||||
in_word = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user