diff options
author | nyamatongwe <unknown> | 2003-02-17 11:18:05 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-02-17 11:18:05 +0000 |
commit | 66f55a8d94635d87d94a34e8e38f28ea6cf5f174 (patch) | |
tree | d84608804cf30f6e7bc8bbc71729372510926f4c /src | |
parent | 6275f5a4c7dd5d92a6085a2e78b3aa2d8c47c738 (diff) | |
download | scintilla-mirror-66f55a8d94635d87d94a34e8e38f28ea6cf5f174.tar.gz |
Upgraded keyword list descriptions from Brian Quinlan.
Diffstat (limited to 'src')
-rw-r--r-- | src/LexCSS.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/LexCSS.cxx b/src/LexCSS.cxx index fdf53efba..618d637e2 100644 --- a/src/LexCSS.cxx +++ b/src/LexCSS.cxx @@ -243,4 +243,10 @@ static void FoldCSSDoc(unsigned int startPos, int length, int, WordList *[], Acc styler.SetLevel(lineCurrent, levelPrev | flagsNext); } -LexerModule lmCss(SCLEX_CSS, ColouriseCssDoc, "css", FoldCSSDoc); +static const char * const cssWordListDesc[] = { + "Keywords", + "Pseudo classes", + 0 +}; + +LexerModule lmCss(SCLEX_CSS, ColouriseCssDoc, "css", FoldCSSDoc, cssWordListDesc); |