LexerYAML.py: Fixed the YAML comment character.

Fri, 04 May 2018 18:34:48 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 04 May 2018 18:34:48 +0200
changeset 6276
629b1ff9ab90
parent 6275
8ce9f9c467ec
child 6277
e22952cec018

LexerYAML.py: Fixed the YAML comment character.

QScintilla/Lexers/LexerYAML.py file | annotate | diff | comparison | revisions
--- a/QScintilla/Lexers/LexerYAML.py	Wed May 02 18:39:09 2018 +0200
+++ b/QScintilla/Lexers/LexerYAML.py	Fri May 04 18:34:48 2018 +0200
@@ -28,7 +28,7 @@
         QsciLexerYAML.__init__(self, parent)
         Lexer.__init__(self)
         
-        self.commentString = "---"
+        self.commentString = "#"
     
     def initProperties(self):
         """

eric ide

mercurial