aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexCSS.cxx
AgeCommit message (Collapse)AuthorFilesLines
2008-10-09Fix for #2153429 by Jason Oster. UTF-8 text could be chopped up.nyamatongwe1-1/+6
2008-10-09#2122992 from Jason Oster adds several new keyword listsnyamatongwe1-32/+88
* 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.
2008-09-21Fix from Jason Oster for bug #2114532: CSS2 identifier syntax highlightingnyamatongwe1-8/+3
bug.
2008-04-20Safety for non-ASCII characters when calling ctype functions.nyamatongwe1-3/+3
2007-06-01integrate OS X support for scintilla. a big patch with a little commit ↵scaraveo1-0/+4
message :) - now uses namespaces (optionally for non-os x) to avoid conflicts with OS X libraries - several fixes in the OS X layer since the branch was commited in 2005 - used in Komodo since 2005, so pretty stable
2005-02-04Patch from Jakub Vrana to upgrade CSS support to CSS2.nyamatongwe1-2/+24
2004-08-24Patch from Philippe Lhoste to support second set of keywords fornyamatongwe1-6/+17
CSS 2. Removal of css settings from html.properties where they duplicated settings from css.properties.
2004-06-02Update from Philippe with some support for CSS 2.nyamatongwe1-4/+13
2003-07-23Patch from Shane to allow multiple pseudo-classes.nyamatongwe1-1/+2
2003-03-04Patch from Jakub to add quoted strings to CSS lexer.nyamatongwe1-9/+17
2003-03-03Patch from Jakub Vrana to handle some out of bounds characters andnyamatongwe1-2/+2
repetitive pseudo-classes.
2003-02-17Upgraded keyword list descriptions from Brian Quinlan.nyamatongwe1-1/+7
2002-12-05Patch from Vrana to fix some lexing problems.nyamatongwe1-1/+13
2002-11-17Fixed warnings.nyamatongwe1-10/+10
2002-11-17Jakub Vrána has added a CSS (Cascading Style Sheet) lexer to Scintilla.nyamatongwe1-0/+234
This is separate to the HTML lexer and is only invoked for stand-alone CSS files, not for the STYLE section of HTML files. He also made some other additions. There is a Line Duplicate command which is bound to Ctrl+D. PHP lexing has been improved.