Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
This allows to fold on array literals for languages like JavaScript
that use square brackets to declare array literals.
This should not change much for languages that only use square brackets
for array indexation as the large majority of the time the open and
close brackets are placed on the same line in these cases.
|
|
|
|
|
|
defined in scripts/HeaderOrder.txt.
|
|
|
|
|
|
#define MAC(x) MAC(x+1)
Also fixes macros that are co-recursive with other macros.
|
|
|
|
Previously required braces around like #if defined(SYMBOL).
Also understand macros with arguments such as version checking macros like
#if GTK_CHECK_VERSION(2,22,0)
|
|
|
|
static.
|
|
From nkmathew.
|
|
|
|
literals with
lexer.cpp.backquoted.strings option.
From Eric Promislow.
|
|
From nkmathew.
|
|
style.
|
|
|
|
Parameter names added to method declarations.
|
|
|
|
split.
From Alpha.
|
|
|
|
|
|
From Alpha.
|
|
|
|
|
|
Tests for this and other sub styles methods.
|
|
|
|
From Alpha.
|
|
From Alpha.
|
|
|
|
|
|
See C++11 standard 2.14.5 String literals.
|
|
comment.
|
|
directive.
From Alpha.
|
|
|
|
Regular expression "/[/]/" is valid, the second "/" being escaped by the
character range ("[]"). Also, escape any \-prefixed character, including
"[" and "]".
|
|
From Isiledhel.
|
|
From Isiledhel.
|
|
---
lexers/LexCPP.cxx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
From Sakshi Verma.
|
|
|
|
inside preprocessor directives.
Includes code from Marko Njezic.
|
|
|
|
non whitespace character and counting visible characters in line.
|
|
|
|
|
|
comment that's inside disabled preprocessor macro.
|
|
|
|
#if defined( XXX 1
From Stefan Weil.
|