aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers
AgeCommit message (Collapse)AuthorFilesLines
2012-01-17Added SCSS mode to CSS lexer. From Ross McKay.nyamatongwe1-24/+193
2011-12-30Fold block of single-line comments.Jérôme LAFORGE1-1/+28
2011-12-28Fold only and all empty HTML tagsUnknown1-7/+8
2011-12-22Replace _strupr with portable code.nyamatongwe1-1/+9
2011-12-22Lexer for the Take Command / TCC scripting language. Feature #3462462.nyamatongwe1-0/+503
From Rex Conn.
2011-12-14Remove duplicated clause as this caused warning from cppcheck.nyamatongwe1-1/+1
2011-12-13Bug #3458508. Fixed preprocessor structure messed up by continuation lines.nyamatongwe1-0/+2
2011-12-09Highlight column numbers in GCC-style diagnostic lines. Feature #3453075.nyamatongwe1-3/+9
From Jakub Vrána.
2011-12-09Fixed ruby lexer to correctly handle '=begin' comments at start of file. Any ↵Nathan Broadbent1-2/+2
'=' at the start of a file would incorrectly trigger the comment state. --- lexers/LexRuby.cxx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
2011-12-02Remove dead assignment.nyamatongwe1-1/+0
2011-11-29Feature #3436256. Lexer for CoffeeScript from Eric Promislownyamatongwe1-0/+572
of ActiveState.
2011-11-17Fix crash caused by out-of-bounds memory access for line:nyamatongwe1-1/+1
#if defined( XXX 1 From Stefan Weil.
2011-11-14Removed warning suppression that had been included for Visual C++ 6.0.nyamatongwe6-24/+0
2011-11-14Added ctype to avoid compilation problems for Padre.nyamatongwe3-0/+3
2011-11-09Avoid warning about dead code.nyamatongwe1-1/+1
2011-11-05Highlight words as keywords after '{' as this highlights 'else'. Bug #1836954.nyamatongwe1-0/+1
From Colomban Wendling.
2011-10-26Fix warning from Clang.nyamatongwe1-1/+1
2011-09-22Hashquoted strings for Pike language from Chris Angelico.nyamatongwe1-0/+17
2011-08-26Fixing Markdown lexer to not change state inside term. Bug #3398184.nyamatongwe1-8/+15
From Eric Promislow at ActiveState.
2011-08-20Styling of variable interpolation for Perl. Feature #3394258.nyamatongwe1-60/+282
From Kein-Hong Man.
2011-08-10Feature #3388802. Support changes in Perl 5.14.0:nyamatongwe1-3/+3
(a) new + character for subroutine prototypes (b) 0X and 0B prefixes for binary and hexadecimal numbers are now legal From Kein-Hong Man
2011-08-09Improvements to LaTeX lexer from Josepmaria Roca adds several newnyamatongwe1-28/+222
lexer states. Verbatim regions are handled. Bugs #1187857, #1493111, #1778404, #1856356, #2082547, #3081692
2011-08-08More selective for raw string mode. Bug #3388122.nyamatongwe1-8/+13
2011-08-05Fix for infinite loop bug when typing "goto " at the end of the program.nyamatongwe1-1/+1
2011-08-05Lua lexer update for Lua 5.2 beta. Feature #3386330.nyamatongwe1-6/+76
(a) \* escapes in strings changed to \z (b) goto <label> highlighting for same line only (c) :: <label> :: highlighting for same line only From Kein-Hong Man.
2011-08-05Updated email contact.nyamatongwe1-1/+1
2011-08-05Use casts to squash 64-bit warnings from strlen return value.nyamatongwe6-7/+7
2011-08-03Patch from Kein-Hong Man:nyamatongwe1-19/+12
- bkend adjust - removal of isMatch() No changes to behaviour or highlighting, _except_ for CRLF line endings, highlighting will stop at the end of the HEREDOC delimiter instead of eating up the CR as well.
2011-08-03Fixed 64-bit warnings.nyamatongwe1-6/+6
2011-07-09Fixed mistake in last change.nyamatongwe1-1/+0
2011-07-08Removed fold.comment.python property as it has not worked for many years.nyamatongwe1-24/+7
2011-07-08Bug #3325333. Property lexer.python.keywords2.no.sub.identifiers controlsnyamatongwe1-5/+14
whether keywords from the keywords2 list are valid after '.'. From Todd Whiteman.
2011-07-06Fix problems with folding not extending to final line. Bug #3349157.nyamatongwe1-5/+6
From Marko Njezic.
2011-07-02Recognise COBOL comments '*' in column 7 or '*>'. Bug #3014850.nyamatongwe1-0/+8
From Gerrit.
2011-06-24Support for new Mako block syntax. Feature #3325178.nyamatongwe1-10/+20
From Stephan R.A. Deibel.
2011-06-24LexPython: keywords2: don't highlight sub-identifiers. Bug #3325333.nyamatongwe1-1/+6
From Todd Whiteman.
2011-06-23Disable folding for mako template files. Bug #3324563.nyamatongwe1-6/+1
From Stephan R.A. Deibel.
2011-06-21Support mako ## comments. Bug #3318818.nyamatongwe1-0/+13
From Stephan R.A. Deibel.
2011-06-17Single quoted strings may not have \ escapes. Bugs #948757 #1755950 #1888738 ↵nyamatongwe1-6/+6
#3316852 From Jaime Gimeno
2011-05-25Update to support SystemVerilog.nyamatongwe1-9/+21
2011-05-21Code formatting normalised to standard.nyamatongwe2-9/+8
2011-05-19Variables names may contain braces like %ProgramFiles(x86)%.nyamatongwe1-1/+1
These are now treated as one variable name instead of being broken up. From Florian Balmer.
2011-05-09Allow nested variables in make files. Bug #3298223.nyamatongwe1-2/+6
From Dimitar Zhekov.
2011-04-22Avoid warning.nyamatongwe1-1/+1
2011-04-16Bug #3283880. Highlight source code inside [CODE] section when lexingnyamatongwe1-1/+10
starts in the middle. From Marko Njezic.
2011-04-16Support cython cpdef keyword. Bug #3279728.nyamatongwe1-6/+8
From Stephan R.A. Deibel.
2011-04-06Made the fold backtrack unconditional as discussed on bug #3265401.nyamatongwe1-4/+2
2011-04-06Django in HTML lexer recognizes {# #} comments. Bug #3013798.nyamatongwe1-0/+31
From Stephan R.A. Deibel at Wingware.
2011-04-05Fixed spacing in explanation.nyamatongwe1-1/+1
2011-04-05Changed name of folding at else property to fold.sql.at.else. Bug #3271474.nyamatongwe1-1/+1