QScintilla/Lexers/LexerJavaScript.py

changeset 6874
5a3a39442711
parent 6645
ad476851d7e0
equal deleted inserted replaced
6873:47804e8cde27 6874:5a3a39442711
36 self.boxCommentString = { 36 self.boxCommentString = {
37 'start': '/* ', 37 'start': '/* ',
38 'middle': ' * ', 38 'middle': ' * ',
39 'end': ' */' 39 'end': ' */'
40 } 40 }
41 41
42 self.keywordSetDescriptions = [
43 self.tr("Primary keywords and identifiers"),
44 self.tr("Secondary keywords and identifiers"),
45 self.tr("Documentation comment keywords"),
46 self.tr("Global classes and typedefs"),
47 self.tr("Preprocessor definitions"),
48 self.tr("Task marker and error marker keywords"),
49 ]
50
42 def initProperties(self): 51 def initProperties(self):
43 """ 52 """
44 Public slot to initialize the properties. 53 Public slot to initialize the properties.
45 """ 54 """
46 self.setFoldComments(Preferences.getEditor("CppFoldComment")) 55 self.setFoldComments(Preferences.getEditor("CppFoldComment"))

eric ide

mercurial