Browse Source

Now the script editor highlight all lines of a multiline string

Franklin Sobrinho 10 years ago
parent
commit
562bc22dd4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/gdscript/gd_editor.cpp

+ 1 - 1
modules/gdscript/gd_editor.cpp

@@ -33,7 +33,7 @@
 void GDScriptLanguage::get_comment_delimiters(List<String> *p_delimiters) const {
 
 	p_delimiters->push_back("#");
-	p_delimiters->push_back("\"\"\"");
+	p_delimiters->push_back("\"\"\" \"\"\"");
 
 }
 void GDScriptLanguage::get_string_delimiters(List<String> *p_delimiters) const {