diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-08-19 18:36:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-19 18:36:45 +0200 |
commit | c9498d4c3da0ac0b107ea015cf6e554a0dd882b5 (patch) | |
tree | 90c33d05450f0a84b9c1f323114881c28b6127aa /modules | |
parent | 5d09877da8003740928502aead0b46505495721f (diff) | |
parent | 649c3bee3b0d291f448463649dacbca4919f147b (diff) |
Merge pull request #21182 from Calinou/highlight-multiline-strings
Highlight multiline strings as strings instead of comments
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index abd56d2757..934c93059a 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -46,12 +46,12 @@ void GDScriptLanguage::get_comment_delimiters(List<String> *p_delimiters) const { p_delimiters->push_back("#"); - p_delimiters->push_back("\"\"\" \"\"\""); } void GDScriptLanguage::get_string_delimiters(List<String> *p_delimiters) const { p_delimiters->push_back("\" \""); p_delimiters->push_back("' '"); + p_delimiters->push_back("\"\"\" \"\"\""); } Ref<Script> GDScriptLanguage::get_template(const String &p_class_name, const String &p_base_class_name) const { #ifdef TOOLS_ENABLED |