aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexCSS.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-02-17 11:18:05 +0000
committernyamatongwe <devnull@localhost>2003-02-17 11:18:05 +0000
commitde0de1623ef9478f0e3ad68135c4a65a40530b9d (patch)
treed84608804cf30f6e7bc8bbc71729372510926f4c /src/LexCSS.cxx
parent42f022fc914d6888f55af7e96add39aca735d102 (diff)
downloadscintilla-mirror-de0de1623ef9478f0e3ad68135c4a65a40530b9d.tar.gz
Upgraded keyword list descriptions from Brian Quinlan.
Diffstat (limited to 'src/LexCSS.cxx')
-rw-r--r--src/LexCSS.cxx8
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);