| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2020-01-04 | Backport: Define ILexerWithIdentity with methods for retrieving name, ID, ↵ | mitchell | 1 | -2/+6 | |
| and property values. Implement ILexerWithIdentity on object lexers. Implement ILexerWithIdentity on LexerSimple wrapper for function lexers. Backport of changeset 7870:6ffcbd42288c, but with a new interface compatible with ILexer, not ILexer5. | |||||
| 2019-06-25 | Backport: Avoid cppcheck warnings by using same names in declaration and ↵ | Neil | 1 | -2/+2 | |
| definition. Backport of changeset 7607:5c931c0c9458. | |||||
| 2019-06-25 | Backport: Bug [#2098]. Remove unused variable. | Zufu Liu | 1 | -2/+1 | |
| Backport of changeset 7606:dc0272dd104f. | |||||
| 2019-06-25 | Backport: Bug [#2098]. Fix single quoted strings where '" (quote, double ↵ | Zufu Liu | 1 | -1/+1 | |
| quote) was seen as continuing the string. Backport of changeset 7605:bd1bf8e13d33. | |||||
| 2017-09-11 | Backport: The Scintilla namespace is always active for internal symbols and ↵ | Neil | 1 | -2/+0 | |
| for the lexer and document interfaces. Backport of changeset 6388:d62863ae40a3. | |||||
| 2017-08-18 | Backport: Bug [#1968]. Use sql.backslash.escapes for double quoted strings. | Justin Clift | 1 | -1/+1 | |
| Backport of changeset 6377:ccc04ea8f7fd. | |||||
| 2017-06-22 | Backport: Add a DefaultLexer class which lexers can subclass if they want ↵ | Neil | 1 | -1/+2 | |
| reasonable default implementations of the ILexerWithSubStyles interface methods. Backport of changeset 6326:d18622e37a3e. | |||||
| 2017-03-04 | Use C++11 keyword "override" for methods in lexers that override an interface. | Neil | 1 | -11/+11 | |
| 2015-11-20 | Remove line end whitespace. | Neil | 1 | -5/+5 | |
| 2015-07-30 | Use Sci_Position / Sci_PositionU for variables in lexers that represent | Joe Mueller | 1 | -15/+15 | |
| positions and line numbers and may be widened to 64-bits in a future release. | |||||
| 2015-07-20 | Use Sci_Position when required to implement interfaces. | Neil | 1 | -7/+7 | |
| 2015-03-29 | Fix handling of '+' and '-' in numbers. | Neil | 1 | -4/+5 | |
| From Michael Staszewski. | |||||
| 2015-01-24 | Fix a bug with the q-quote operator. | Neil | 1 | -23/+27 | |
| From Michael Staszewski. | |||||
| 2014-09-06 | Support the q-quote operator as SCE_SQL_QOPERATOR. | Neil | 1 | -1/+31 | |
| From Michael Staszewski. | |||||
| 2013-12-15 | Format normalization - whitespace and braces made consistent. | Neil | 1 | -1/+1 | |
| Parameter names added to method declarations. | |||||
| 2013-09-26 | Feature [feature-requests:#1020]. Fold 'create view' statements. | Neil | 1 | -31/+131 | |
| Fold on the 'AS' ... ; in `create view [name] as ... ;' From Eric Promislow. | |||||
| 2012-09-25 | Fix bad folding with CASE statement when it is used for assignment. | Jerome LAFORGE | 1 | -15/+13 | |
| Reported by : Erik Sinde Bug #3571820 | |||||
| 2012-09-15 | Fix bad folding block when LOOP statement nested into CASE statement. | Jerome LAFORGE | 1 | -2/+3 | |
| Bug #3567905. | |||||
| 2012-05-05 | Make destructors virtual to avoid warnings from g++ 4.7. | nyamatongwe | 1 | -0/+2 | |
| 2012-03-22 | Use SparseState instead of std::vector. | Jerome LAFORGE | 1 | -12/+4 | |
| Cleaning dead code. Feature #3510158. | |||||
| 2012-03-13 | Improvement of folding for CASE/MERGE statement. | Jerome LAFORGE | 1 | -24/+72 | |
| Bug #3503277. | |||||
| 2012-03-11 | Manage MERGE statement like CASE statement. | Jerome LAFORGE | 1 | -3/+31 | |
| Bug #3499664. | |||||
| 2011-12-30 | Fold block of single-line comments. | Jérôme LAFORGE | 1 | -1/+28 | |
| 2011-11-14 | Removed warning suppression that had been included for Visual C++ 6.0. | nyamatongwe | 1 | -4/+0 | |
| 2011-04-05 | Fixed spacing in explanation. | nyamatongwe | 1 | -1/+1 | |
| 2011-04-05 | Changed name of folding at else property to fold.sql.at.else. Bug #3271474. | nyamatongwe | 1 | -1/+1 | |
| 2011-03-22 | Ignore ';' in a comment. Bug #3196071. | nyamatongwe | 1 | -2/+16 | |
| From Jérôme LAFORGE. | |||||
| 2011-01-31 | Feature #3165488. Add fold point to bracketed expression lines like | nyamatongwe | 1 | -1/+3 | |
| ) AND ( similar to folding at "} else {". | |||||
| 2011-01-27 | Dropped inclusion of PropSetSimple.h in lexers which do not use ↵ | nyamatongwe | 1 | -1/+0 | |
| PropSetSimple directly. Dropped declaration not needed in LexCPP. | |||||
| 2011-01-24 | Remove fold.sql.exists as no longer needed due to folding on 'then' instead ↵ | nyamatongwe | 1 | -10/+3 | |
| of 'if'. | |||||
| 2011-01-24 | Whitespace normalised. | nyamatongwe | 1 | -2/+2 | |
| 2011-01-20 | Allow words to include '.' with lexer.sql.allow.dotted.word. Feature #3103129. | nyamatongwe | 1 | -3/+12 | |
| From b548204bb. | |||||
| 2011-01-18 | Fix problem with folding within PACKAGE. Bug #3160032. | nyamatongwe | 1 | -1/+5 | |
| 2011-01-12 | Complete folding for CASE WHEN THEN. Feature #3135027. | nyamatongwe | 1 | -83/+402 | |
| Code structure updated to new style matching C++ lexer. From Jérôme LAFORGE. | |||||
| 2010-11-25 | Bug #3113609. Fix folding when if/else/elsif on one line. | nyamatongwe | 1 | -16/+20 | |
| 2010-11-20 | Bug #3108351. Fix folding with end when fold.sql.only.begin=1. | nyamatongwe | 1 | -6/+28 | |
| 2010-11-16 | Feature #3108351. Enable fold.at.else for SQL. From Jérôme LAFORGE. | nyamatongwe | 1 | -2/+8 | |
| 2010-11-08 | Feature #3104091. Folding for CASE in SQL. From Jérôme LAFORGE. | nyamatongwe | 1 | -1/+4 | |
| 2010-10-31 | Feature request #3098071. Property to turn off '#' as comment start in SQL. | nyamatongwe | 1 | -1/+6 | |
| 2010-07-13 | For new lexer design change includes to add new files and remove unused files. | nyamatongwe | 1 | -11/+15 | |
| Normalise order of includes. Minor fixes for compatibility with new lexer design. | |||||
| 2010-07-13 | Moved lexers into lexers directory. | nyamatongwe | 1 | -0/+357 | |
