Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-06-22 | Fix printf formatting with correct format specifier and cast to allow argument | Neil | 1 | -1/+1 | |
be 64-bit. | |||||
2017-06-22 | Use same types for CheckLevelCommentLine to allow 64-bit Sci_Position. | Neil | 1 | -1/+1 | |
2017-06-07 | Bug [#1919]. Rust - Update integer suffixes. | Pavel Sountsov | 1 | -1/+3 | |
2017-06-09 | Use min and max from std instead of own version from platform. | Neil | 1 | -1/+3 | |
2017-05-18 | Handle Hex & Exp representations properly. Octal representation not ↵ | oirfeodent | 1 | -3/+20 | |
available in BaanC. Undo auto indentation by editor. Add + as well similar to -. V3. Replace ascii value of e & x to actual value. | |||||
2017-05-12 | If "Show End of Line" is enabled, using sc.atLineEnd causes <CR> to be ↵ | oirfeodent | 1 | -1/+2 | |
coloured as comment in windows due to <CR><LF>. Checking for <CR> or <LF> directly should work for Windows/Linux/Mac. Escape Sequence corrected. | |||||
2017-05-08 | Bug [#1944]. Recognize strings in lists in more cases. | Kein-Hong Man | 1 | -2/+15 | |
2017-04-21 | Treat comments at the end of the file as separate from the preceding structure. | Neil | 1 | -2/+8 | |
2017-04-19 | Include header needed for std::lower_bound used in SparseState.h. | Neil | 1 | -0/+1 | |
2017-04-18 | Bug [#1936]. Implement comment folding. | darmar | 1 | -9/+211 | |
2017-04-18 | Bug [#1935]. Recognize a preprocessor line after a line continuation. | darmar | 1 | -9/+13 | |
2017-04-15 | Use bool literals true and false instead of 1 and 0. | Neil | 1 | -4/+4 | |
2017-04-10 | Bug [#1931]. Recognize comments in more situations and treat "..." like "---". | Jim Pattee | 1 | -1/+5 | |
2017-04-09 | Further use of range-for. | Neil | 1 | -9/+9 | |
2017-04-07 | Prefer C++ static cast over C-style casts. | Neil | 2 | -5/+5 | |
2017-04-06 | Added const to some lexers. | Neil | 6 | -61/+61 | |
2017-04-05 | Made formatting more consistent by running astyle. | Neil | 1 | -6/+6 | |
2017-04-05 | Bug [#1929]. Recognize escaped quotes within quotes. | Jim Pattee | 1 | -0/+4 | |
2017-03-28 | Fix Xcode warning. | Neil Hodgson | 1 | -1/+1 | |
2017-03-27 | Keep positions in Sci_Position variables so can adapt to changes. | Neil | 1 | -3/+3 | |
2017-03-23 | The Python lexer recognizes identifiers more accurately when they include | Neil | 1 | -10/+4 | |
non-ASCII characters. Calls provided for determining whether characters are in the sets defined for identifiers by the Unicode standard in UAX #31. | |||||
2017-03-10 | Bug [#1918]. Fix failure when lexing starts at line 3+ of a multiline f-string. | John Ehresman | 1 | -1/+2 | |
2017-03-08 | Standardised formatting by running astyle as formatting had become inconsistent. | Neil | 1 | -49/+45 | |
2017-03-08 | Improve f-string support. | John Ehresman | 1 | -32/+145 | |
Add support for multiline expressions in triple quoted f-strings. Handle nested "()", "[]", and "{}" in f-string expressions and terminate expression coloring at ":" or "!". End f-string if ending quote is seen in a "{}" expression. Fix terminating single quoted f-string at EOL. | |||||
2017-03-07 | Avoid potential problems with memcmp reading past end of object. | Neil | 1 | -1/+2 | |
2017-03-07 | Handle nested comments for adjacent markers like "/*/*" or "*/*/". | Matt Gilarde | 1 | -1/+6 | |
2017-03-06 | New "indent" lexer styled as plain text but folded by indentation level. | Vicente | 1 | -0/+73 | |
2017-03-06 | Fold a VHDL "entity" on the first line of the file. | Vicente | 1 | -3/+5 | |
2017-03-04 | Use C++11 keyword "override" for methods in lexers that override an interface. | Neil | 18 | -223/+223 | |
2017-02-15 | Bug [#1848]. Line ends OK in f-strings for lexer.python.strings.over.newline=1. | John Ehresman | 1 | -18/+36 | |
2017-02-12 | Bug [#1848]. Support Python f-strings with new styles. | John Ehresman | 1 | -17/+68 | |
2017-01-22 | Correctly color code deleted lines starting with "--" | Sven Strickroth | 1 | -1/+3 | |
This fixes the coloring of deleted lines in which starts with "--" such as closing HTML comments ("-->"). Signed-off-by: Sven Strickroth <email@cs-ware.de> | |||||
2017-01-19 | Bug [#1902]. Require Matlab block comment start/end to be alone on a line. | Neil | 1 | -9/+24 | |
2017-01-14 | Require the first line to start with "#!" to be treated as a shebang comment. | jedailey | 1 | -2/+2 | |
2016-12-22 | Don't style @1 as a decorator | John Ehresman | 1 | -1/+1 | |
2016-12-22 | Allow Python 3 unicode identifiers | John Ehresman | 1 | -8/+34 | |
2016-12-22 | Recognize f as a string prefix | John Ehresman | 1 | -3/+11 | |
2016-11-27 | Make EDIFACT lexer work on macOS. | Neil Hodgson | 1 | -0/+4 | |
2016-11-25 | Feature [feature-requests:#1166]. EDIFACT lexer and folder added. | Iain Clarke | 1 | -0/+315 | |
2016-11-24 | Bug [#1692]. LexMatlab: update fold functions to use keywords instead of ↵ | John Donoghue | 1 | -38/+79 | |
indenting. * lexers/LexMatlab.cxx (IsMatlabComment): removed unused function. (IsOctaveComment): removed unused function. (LowerCase): Added inline function. (CheckKeywordFoldPoint): New function. (FoldMatlabOctaveDoc): use style and keyword to identify fold points. (FoldMatlabDoc): Use IsMatlabCommentChar. (FoldOctaveDoc): Use IsOctaveCommentChar. | |||||
2016-11-17 | Subsection Folding breaks, when Comment placed between Main & Sub Sections. ↵ | oirfeodent | 1 | -2/+25 | |
Bug Fix. | |||||
2016-11-15 | Fixed return type to match interface. | Neil | 1 | -1/+1 | |
2016-11-08 | LexBaan, Folds based additional inner clauses. Default is off. | oirfeodent | 1 | -0/+35 | |
2016-11-05 | StyleContext no longer needs mask argument. | Neil | 2 | -2/+2 | |
Remove warning suppression pragma no longer needed for Perl's StyleContext. | |||||
2016-10-27 | Add Subsection folding & Fix Preprocessor without spaces. | oirfeodent | 1 | -11/+43 | |
2016-10-27 | Fix truncation warning from Xcode. | Neil Hodgson | 1 | -1/+1 | |
2016-10-25 | Sections Folding option, baan specific preprocessor, declaration folding ↵ | oirfeodent | 1 | -76/+150 | |
grouped. fold.baan.keywords.based adds declaration folding. Hence added fold.baan.sections property. Preprocessor does not allow space in between # and words. Lexes only defined preprocessors. Declarations are folded as well. | |||||
2016-10-20 | Rewrite Folding to accomodate Main Sections and Fix SCE_BAAN_FUNCDEF defining. | oirfeodent | 1 | -33/+121 | |
2016-10-21 | Bug [#1872]. Fix style of references and keywords when followed by a comment. | Jim Pattee | 1 | -29/+47 | |
2016-10-14 | Fix JSON lexer folding bug. | yonken | 1 | -2/+4 | |