aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers
AgeCommit message (Expand)AuthorFilesLines
2018-01-02Backport: [Bug #1985] Add 'while' keyword to Matlab lexer keywords that start...John Donoghue1-0/+1
2017-11-05Backport: Stop treating '\' as an escape character in strings.Vicente1-7/+26
2017-11-05Backport: Indent more uniformly with spaces instead of tabs.Vicente1-34/+34
2017-10-26Backport: Fix nested Django tags inside a comment breaking highlighting of re...Stephan Deibel1-1/+1
2017-10-15Backport: Bug [#1977]. Folder treats triple-quoted f-strings like triple-quot...Zufu Liu1-3/+3
2017-09-25Backport: Avoiding comma operator warnings from Clang in lexers.Neil Hodgson3-5/+15
2017-09-15Backport: Bug [#1972]. Change encoding used in comments to UTF-8.Zufu Liu4-4/+8
2018-03-15Use active Scintilla namespace in LPeg lexer.mitchell1-4/+0
2017-09-11Backport: The Scintilla namespace is always active for internal symbols and f...Neil105-210/+0
2017-09-01Backport: Use "Falls through" comments to avoid warnings from GCC 7.1.Neil Hodgson6-0/+8
2017-08-28Backport: Bug [#1966]. "defined A" removes "A" before replacing "defined" wit...Jannick1-0/+1
2017-08-28Backport: Bug [#1966]. #define A is treated as #define A 1.Jannick1-0/+2
2017-08-28Backport: Bug [#1966]. Default value of 0 for undefined preprocessor symbols.Jannick1-2/+2
2017-08-18Backport: Bug [#1968]. Use sql.backslash.escapes for double quoted strings.Justin Clift1-1/+1
2017-08-07Backport: Bug [#1965]. Implement "fold", "fold.comment", and "fold.compact" p...Zufu Liu1-2/+8
2017-07-17Backport: Fix signed / unsigned comparison warnings.Neil1-4/+4
2017-07-17Backport: Update types for Unix LP64 after changes to Sci_Position/Sci_Positi...Neil Hodgson11-16/+18
2017-07-17Backport: Mark overriding methods as "override".Neil Hodgson1-4/+4
2017-07-17Backport: Implement style metadata for some languages.Neil4-9/+311
2017-06-22Backport: Add style metadata methods with null implementations.Neil1-4/+16
2017-06-29Backport: Bug [#1951]. matlab lexer - dont use 'end' as a keyword when used a...John Donoghue1-0/+13
2017-06-22Backport: Add a DefaultLexer class which lexers can subclass if they want rea...Neil16-17/+33
2017-06-22Backport: Fix printf formatting with correct format specifier and cast to all...Neil1-1/+1
2017-06-22Backport: Use same types for CheckLevelCommentLine to allow 64-bit Sci_Position.Neil1-1/+1
2017-06-07Backport: Bug [#1919]. Rust - Update integer suffixes.Pavel Sountsov1-1/+3
2017-06-09Backport: Use min and max from std instead of own version from platform.Neil1-1/+3
2018-03-11Added optional Lua lexer support.mitchell1-0/+795
2017-10-15Apply patch set #6396 to LongTerm3 Branch.oirfeodent1-4/+6
2017-08-30Apply patch set #6385 to LongTerm3 Branch.oirfeodent1-1/+4
2017-07-05Apply patch set #6335 to LongTerm3 Branch.oirfeodent1-1/+1
2017-05-18Handle Hex & Exp representations properly. Octal representation not available...oirfeodent1-3/+20
2017-05-12If "Show End of Line" is enabled, using sc.atLineEnd causes <CR> to be colour...oirfeodent1-1/+2
2017-05-08Bug [#1944]. Recognize strings in lists in more cases.Kein-Hong Man1-2/+15
2017-04-21Treat comments at the end of the file as separate from the preceding structure.Neil1-2/+8
2017-04-19Include header needed for std::lower_bound used in SparseState.h.Neil1-0/+1
2017-04-18Bug [#1936]. Implement comment folding.darmar1-9/+211
2017-04-18Bug [#1935]. Recognize a preprocessor line after a line continuation.darmar1-9/+13
2017-04-15Use bool literals true and false instead of 1 and 0.Neil1-4/+4
2017-04-10Bug [#1931]. Recognize comments in more situations and treat "..." like "---".Jim Pattee1-1/+5
2017-04-09Further use of range-for.Neil1-9/+9
2017-04-07Prefer C++ static cast over C-style casts.Neil2-5/+5
2017-04-06Added const to some lexers.Neil6-61/+61
2017-04-05Made formatting more consistent by running astyle.Neil1-6/+6
2017-04-05Bug [#1929]. Recognize escaped quotes within quotes.Jim Pattee1-0/+4
2017-03-28Fix Xcode warning.Neil Hodgson1-1/+1
2017-03-27Keep positions in Sci_Position variables so can adapt to changes.Neil1-3/+3
2017-03-23The Python lexer recognizes identifiers more accurately when they includeNeil1-10/+4
2017-03-10Bug [#1918]. Fix failure when lexing starts at line 3+ of a multiline f-string.John Ehresman1-1/+2
2017-03-08Standardised formatting by running astyle as formatting had become inconsistent.Neil1-49/+45
2017-03-08Improve f-string support.John Ehresman1-32/+145