diff options
| author | nyamatongwe <devnull@localhost> | 2008-10-09 02:46:57 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2008-10-09 02:46:57 +0000 |
| commit | 3751deea7b3fca18e67f60556b7369810f75ac23 (patch) | |
| tree | 435a5b9a7972c79382c2db29923af959c81ff21d /include/Scintilla.iface | |
| parent | 8f15e7ddb587b9dc0841c416ece3e1d254882049 (diff) | |
| download | scintilla-mirror-3751deea7b3fca18e67f60556b7369810f75ac23.tar.gz | |
#2122992 from Jason Oster adds several new keyword lists
* Asterisks are now treated (styled) as valid tag characters.
* The vertical pipe | and tilde ~ are now treated as selector characters.
(CSS namespace selector, and preceding element selector, respectively.)
* Pseudo-classes can be extended with additional simple selectors. (Not
sure if extending pseudo-elements in the same way is necessary. The CSS
specs don't seem to indicate this kind of usage with pseudo-elements.)
Useful for pseudo-classes like :not() and [to lesser extent] :lang(), but
also for some vendor-specific pseudo-classes.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index e8292d267..35daa6420 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2606,6 +2606,11 @@ val SCE_CSS_DOUBLESTRING=13 val SCE_CSS_SINGLESTRING=14 val SCE_CSS_IDENTIFIER2=15 val SCE_CSS_ATTRIBUTE=16 +val SCE_CSS_IDENTIFIER3=17 +val SCE_CSS_PSEUDOELEMENT=18 +val SCE_CSS_EXTENDED_IDENTIFIER=19 +val SCE_CSS_EXTENDED_PSEUDOCLASS=20 +val SCE_CSS_EXTENDED_PSEUDOELEMENT=21 # Lexical states for SCLEX_POV lex POV=SCLEX_POV SCE_POV_ val SCE_POV_DEFAULT=0 |
