49 @return flag indicating a string style (boolean) |
49 @return flag indicating a string style (boolean) |
50 """ |
50 """ |
51 return style in [QsciLexerBash.DoubleQuotedString, |
51 return style in [QsciLexerBash.DoubleQuotedString, |
52 QsciLexerBash.SingleQuotedString, |
52 QsciLexerBash.SingleQuotedString, |
53 QsciLexerBash.SingleQuotedHereDocument] |
53 QsciLexerBash.SingleQuotedHereDocument] |
|
54 |
|
55 def defaultKeywords(self, kwSet): |
|
56 """ |
|
57 Public method to get the default keywords. |
|
58 |
|
59 @param kwSet number of the keyword set (integer) |
|
60 """ |
|
61 return QsciLexerBash.keywords(self, kwSet) |