Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created February 1, 2019 23:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/140b3a24fc8bd83fb90ba6dde6956658 to your computer and use it in GitHub Desktop.
Save Whateverable/140b3a24fc8bd83fb90ba6dde6956658 to your computer and use it in GitHub Desktop.
greppable6
File Code
JGOFF/ANTLR4-Grammar
…/ANTLRv4Lexer.g4 :32:
lexer grammar ANTLRv4Lexer;
JGOFF/ANTLR4-Grammar
…/ANTLRv4Lexer.g4 :87:
_currentRuleType = _type; // set to inside lexer or parser rule
JGOFF/ANTLR4-Grammar
…/ANTLRv4Lexer.g4 :130:
LEXER : 'lexer' ;
JGOFF/ANTLR4-Grammar
…/ANTLRv4Lexer.g4 :276:
// lexer specification. It matches a single character of any value and being
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :110:
: MODE id SEMI lexerRule*
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :119:
| lexerRule
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :172:
// is an internal indication for lexer rules that they do not match
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :173:
// from the input but are like subroutines for other lexer rules to
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :196:
lexerRule
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :198:
TOKEN_REF COLON lexerRuleBlock SEMI
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :201:
lexerRuleBlock
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :202:
: lexerAltList
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :205:
lexerAltList
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :206:
: lexerAlt (OR lexerAlt)*
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :209:
lexerAlt
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :210:
: lexerElements lexerCommands?
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :214:
lexerElements
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :215:
: lexerElement+
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :218:
lexerElement
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :220:
| lexerAtom ebnfSuffix?
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :221:
| lexerBlock ebnfSuffix?
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :228:
( lexerAtom
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :233:
lexerBlock
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :234:
: LPAREN lexerAltList RPAREN
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :238:
lexerCommands
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :239:
: RARROW lexerCommand (COMMA lexerCommand)*
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :242:
lexerCommand
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :243:
: lexerCommandName LPAREN lexerCommandExpr RPAREN
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :244:
| lexerCommandName
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :247:
lexerCommandName
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :252:
lexerCommandExpr
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :298:
lexerAtom
JGOFF/ANTLR4-Grammar
…/ANTLRv4Parser.g4 :308:
: range // Range x..y - only valid in lexers
JGOFF/ANTLR4-Grammar
…/CSharp4Lexer.g4 :6:
lexer grammar CSharp4Lexer;
JGOFF/ANTLR4-Grammar
…/CSharp4Lexer.g4 :289:
// Explanation: 0.Equals() would be parsed as an invalid real (1. branch) causing a lexer error
JGOFF/ANTLR4-Grammar
…/CSharp4PreProcessor.g4 :10:
lexer grammar CSharp4PreProcessor;
JGOFF/ANTLR4-Grammar
…/ECMAScript.g4 :87:
@lexer::members {
JGOFF/ANTLR4-Grammar
…/ECMAScript.g4 :89:
// A flag indicating if the lexer should operate in strict mode.
JGOFF/ANTLR4-Grammar
…/ECMAScript.g4 :98:
* Returns {@code true} iff the lexer operates in strict mode.
JGOFF/ANTLR4-Grammar
…/ECMAScript.g4 :100:
* @return {@code true} iff the lexer operates in strict mode.
JGOFF/ANTLR4-Grammar
…/ECMAScript.g4 :107:
* Sets whether the lexer operates in strict mode or not.
JGOFF/ANTLR4-Grammar
…/ECMAScript.g4 :110:
* the flag indicating the lexer operates in strict mode or not.
JGOFF/ANTLR4-Grammar
…/ECMAScript.g4 :119:
* is used to determine when the lexer could possibly match a regex
JGOFF/ANTLR4-Grammar
…/ECMAScript.g4 :139:
* Returns {@code true} iff the lexer can match a regex literal.
JGOFF/ANTLR4-Grammar
…/ECMAScript.g4 :141:
* @return {@code true} iff the lexer can match a regex literal.
JGOFF/ANTLR4-Grammar
…/HTMLLexer.g4 :29:
lexer grammar HTMLLexer;
JGOFF/ANTLR4-Grammar
…/ICalendar.g4 :1574:
////////////////////////////// lexer rules //////////////////////////////
JGOFF/ANTLR4-Grammar
…/Java8.g4 :52:
Total lexer+parser time 30844ms.
JGOFF/ANTLR4-Grammar
…/LessLexer.g4 :7:
lexer grammar LessLexer;
JGOFF/ANTLR4-Grammar
…/MySQLBase.g4 :1:
lexer grammar MySQLBase;
JGOFF/ANTLR4-Grammar
…/PCRE.g4 :33:
// Most single line comments above the lexer- and parser rules
JGOFF/ANTLR4-Grammar
…/PGN.g4 :266:
// previous lexer rules.
JGOFF/ANTLR4-Grammar
…/Python3.g4 :38:
@lexer::members {
JGOFF/ANTLR4-Grammar
…/Python3.g4 :40:
// A queue where extra tokens are pushed on (see the NEWLINE lexer rule).
JGOFF/ANTLR4-Grammar
…/Python3.g4 :697:
* lexer rules
JGOFF/ANTLR4-Grammar
…/ScssLexer.g4 :29:
lexer grammar ScssLexer;
JGOFF/ANTLR4-Grammar
…/UCBLogo.g4 :473:
// Create a lexer and parser that will resolve user defined procedures.
JGOFF/ANTLR4-Grammar
…/UCBLogo.g4 :474:
UCBLogoLexer lexer = new UCBLogoLexer(input);
JGOFF/ANTLR4-Grammar
…/UCBLogo.g4 :475:
UCBLogoParser parser = new UCBLogoParser(new CommonTokenStream(lexer));
JGOFF/ANTLR4-Grammar
…/UCBLogo.g4 :540:
@lexer::members {
JGOFF/ANTLR4-Grammar
…/UCBLogo.g4 :542:
// Counters that keep track of how deep the lexer is currently in a list
JGOFF/ANTLR4-Grammar
…/Verilog2001.g4 :601:
Use a lexer mode to handle table: switch to new mode upon table, switch
JGOFF/ANTLR4-Grammar
…/VisualBasic6.g4 :662:
// lexer rules --------------------------------------------------------------------------------
JGOFF/ANTLR4-Grammar
…/XMLLexer.g4 :29:
/** XML lexer derived from ANTLR v4 ref guide book example */
JGOFF/ANTLR4-Grammar
…/XMLLexer.g4 :30:
lexer grammar XMLLexer;
JGOFF/ANTLR4-Grammar
…/tnsnames.g4 :89:
// with a letter or a digit. (See the lexer ID rule below). They
JGOFF/ANTLR4-Grammar
…/tnsnames.g4 :513:
// lexer rule. Compiling the grammar gives "rule reference D_QUOTE
JGOFF/ANTLR4-Grammar
…/tnsnames.g4 :564:
// Other lexer rules, and fragments.
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :162:
# lexer and parser grammars, and lexers can't have parser terms
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :494:
method lexerAtom( $/ ) {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :501:
method lexerBlock( $/ ) {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :504:
for $/<lexerAltList><lexerAlt> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :505:
if $_.<lexerElement>[0]<lexerAtom><range> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :508:
~$_.<lexerElement>[0]<lexerAtom><range><from>[0],
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :509:
~$_.<lexerElement>[0]<lexerAtom><range><to>[0]
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :513:
elsif $_.<lexerElement>[0]<lexerAtom><LEXER_CHAR_SET> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :514:
for $_.<lexerElement>[0]<lexerAtom><LEXER_CHAR_SET>[0] {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :525:
$_.<lexerElement>[0]<lexerAtom><terminal><scalar>.ast
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :536:
my @child = $/<lexerAltList>.ast;
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :543:
method lexerElement( $/ ) {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :547:
if $/<lexerAtom><terminal><scalar> and
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :548:
is-ANTLR-terminal( $/<lexerAtom><terminal><scalar> ) and
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :549:
( !$/<lexerAtom><LEXER_CHAR_SET>[0][0]<LEXER_CHAR_SET_RANGE><LEXER_CHAR_SET_ELEMENT_NO_HYPHEN> ) {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :555:
$/<lexerAtom><terminal><scalar>.ast
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :560:
elsif $/<lexerAtom><LEXER_CHAR_SET> and
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :561:
$/<lexerAtom><LEXER_CHAR_SET>[0][0]<LEXER_CHAR_SET_RANGE><LEXER_CHAR_SET_ELEMENT_NO_HYPHEN> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :563:
~$/<lexerAtom><LEXER_CHAR_SET>[0][0]<LEXER_CHAR_SET_RANGE><LEXER_CHAR_SET_ELEMENT_NO_HYPHEN>,
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :564:
~$/<lexerAtom><LEXER_CHAR_SET>[0][0]<LEXER_CHAR_SET_RANGE><LEXER_CHAR_SET_ELEMENT>
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :572:
elsif $/<lexerAtom><LEXER_CHAR_SET> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :574:
for $/<lexerAtom><LEXER_CHAR_SET> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :586:
elsif $/<lexerAtom><notSet><setElement><terminal> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :588:
$/<lexerAtom><notSet><setElement><terminal><STRING_LITERAL>.ast
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :598:
elsif $/<ebnfSuffix> and $/<lexerAtom><notSet><setElement> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :600:
for $/<lexerAtom><notSet><setElement><LEXER_CHAR_SET>[0] {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :615:
elsif $/<ebnfSuffix> and $/<lexerAtom><notSet> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :617:
for $/<lexerAtom><notSet><blockSet><setElementAltList><setElement> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :632:
$/<lexerAtom><terminal><scalar> and
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :633:
!is-ANTLR-terminal( $/<lexerAtom><terminal><scalar> ) {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :639:
$/<lexerAtom><terminal><scalar>.ast
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :644:
elsif $/<lexerBlock> {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :645:
make $/<lexerBlock>.ast
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :647:
elsif $/<lexerAtom>[0] {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :676:
make $/<lexerAtom>.ast
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :680:
method lexerAlt( $/ ) {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :681:
my @child = $/<lexerElement>>>.ast;
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :694:
method lexerAltList( $/ ) {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :695:
my @child = $/<lexerAlt>>>.ast;
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :709:
method lexerRuleSpec( $/ ) {
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :710:
my @child = $/<lexerAltList>.ast;
JGOFF/ANTLR4-Grammar
…/Perl6.pm6 :719:
$/<lexerRuleSpec>.ast
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :176:
<COMMENTS>? ( :!sigspace 'lexer' | 'parser' )?
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :263:
| 'lexer'
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :269:
<COMMENTS>? 'mode' <ID> ';' <lexerRuleSpec>*
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :274:
| <lexerRuleSpec>
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :323:
# is an internal indication for lexer rules that they do not match
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :324:
# from the input but are like subroutines for other lexer rules to
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :353:
rule lexerRuleSpec
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :358:
<COMMENTS>? <lexerAltList>
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :363:
rule lexerAltList
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :365:
<lexerAlt>+ %% '|'
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :368:
rule lexerAlt
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :370:
<COMMENTS>? <lexerElement>+ <lexerCommands>? <COMMENTS>? | ''
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :373:
rule lexerElement
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :375:
| <lexerAtom> <ebnfSuffix>?
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :376:
| <lexerBlock> <ebnfSuffix>?
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :383:
[ <lexerAtom>
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :390:
rule lexerBlock
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :392:
<complement>? '(' <COMMENTS>? <lexerAltList>? ')'
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :397:
rule lexerCommands
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :399:
'->' <lexerCommand>+ % ','
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :402:
rule lexerCommand
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :404:
<ID> <lexerCommandExpr>?
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :407:
rule lexerCommandExpr
JGOFF/ANTLR4-Grammar
…/Parser.pm6 :458:
rule lexerAtom
JGOFF/ANTLR4-Grammar
…/11-concatenation.t :50:
# using the lexerAlt stuff, which needs to be built out separately.
JGOFF/ANTLR4-Grammar
…/14-grammar-modifiers.t :13:
is ANTLR4::Grammar.to-string( Q:to[END] ), Q:to[END], 'lexer grammar';
JGOFF/ANTLR4-Grammar
…/14-grammar-modifiers.t :14:
lexer grammar Empty;
JGOFF/ANTLR4-Grammar
…/14-grammar-modifiers.t :16:
#|{ "type" : "lexer" }
JGOFF/ANTLR4-Grammar
…/17-modes.t :19:
lexer_stuff : ;
JGOFF/ANTLR4-Grammar
…/17-modes.t :28:
token lexer_stuff {
azawawi/perl6-gtk-scintilla
…/README.md :23:
$editor.lexer(SCLEX_PERL);
azawawi/perl6-gtk-scintilla
…/GTK-Scintilla-Editor.md :22:
$editor.lexer(SCLEX_PERL);
azawawi/perl6-gtk-scintilla
…/01-hello-world.pl6 :17:
$editor.lexer(SCLEX_PERL);
azawawi/perl6-gtk-scintilla
…/02-events.pl6 :62:
$editor.lexer(SCLEX_PERL);
azawawi/perl6-gtk-scintilla
…/03-demo.pl6 :37:
$editor.lexer(SCLEX_PERL);
azawawi/perl6-gtk-scintilla
…/Editor.pm6 :31:
$editor.lexer(SCLEX_PERL);
azawawi/perl6-gtk-scintilla
…/Editor.pm6 :86:
multi method lexer(Int $lexer) {
azawawi/perl6-gtk-scintilla
…/Editor.pm6 :87:
gtk_scintilla_send_message($!gtk_widget, 4001, $lexer, 0);
azawawi/perl6-gtk-scintilla
…/project.pbxproj :238:
1102C31B169FB49300DC16AB /* LexLaTeX.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexLaTeX.cxx; path = ../../lexers/LexLaTeX.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :239:
11126B8114CD3A6200803C49 /* LexAVS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVS.cxx; path = ../../lexers/LexAVS.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :240:
1114D6CA1602A951001DC345 /* LexPO.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPO.cxx; path = ../../lexers/LexPO.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :241:
114B6EBE11FA7526004FB6AB /* LexAbaqus.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAbaqus.cxx; path = ../../lexers/LexAbaqus.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :242:
114B6EBF11FA7526004FB6AB /* LexAda.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAda.cxx; path = ../../lexers/LexAda.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :243:
114B6EC011FA7526004FB6AB /* LexAPDL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAPDL.cxx; path = ../../lexers/LexAPDL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :244:
114B6EC111FA7526004FB6AB /* LexAsm.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsm.cxx; path = ../../lexers/LexAsm.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :245:
114B6EC211FA7526004FB6AB /* LexAsn1.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsn1.cxx; path = ../../lexers/LexAsn1.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :246:
114B6EC311FA7526004FB6AB /* LexASY.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexASY.cxx; path = ../../lexers/LexASY.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :247:
114B6EC411FA7526004FB6AB /* LexAU3.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAU3.cxx; path = ../../lexers/LexAU3.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :248:
114B6EC511FA7526004FB6AB /* LexAVE.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVE.cxx; path = ../../lexers/LexAVE.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :249:
114B6EC611FA7526004FB6AB /* LexBaan.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBaan.cxx; path = ../../lexers/LexBaan.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :250:
114B6EC711FA7526004FB6AB /* LexBash.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBash.cxx; path = ../../lexers/LexBash.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :251:
114B6EC811FA7526004FB6AB /* LexBasic.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBasic.cxx; path = ../../lexers/LexBasic.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :252:
114B6EC911FA7526004FB6AB /* LexBullant.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBullant.cxx; path = ../../lexers/LexBullant.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :253:
114B6ECA11FA7526004FB6AB /* LexCaml.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCaml.cxx; path = ../../lexers/LexCaml.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :254:
114B6ECB11FA7526004FB6AB /* LexCLW.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCLW.cxx; path = ../../lexers/LexCLW.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :255:
114B6ECC11FA7526004FB6AB /* LexCmake.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCmake.cxx; path = ../../lexers/LexCmake.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :256:
114B6ECD11FA7526004FB6AB /* LexCOBOL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCOBOL.cxx; path = ../../lexers/LexCOBOL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :257:
114B6ECE11FA7526004FB6AB /* LexConf.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexConf.cxx; path = ../../lexers/LexConf.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :258:
114B6ECF11FA7526004FB6AB /* LexCPP.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCPP.cxx; path = ../../lexers/LexCPP.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :259:
114B6ED011FA7526004FB6AB /* LexCrontab.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCrontab.cxx; path = ../../lexers/LexCrontab.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :260:
114B6ED111FA7526004FB6AB /* LexCsound.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCsound.cxx; path = ../../lexers/LexCsound.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :261:
114B6ED211FA7526004FB6AB /* LexCSS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCSS.cxx; path = ../../lexers/LexCSS.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :262:
114B6ED311FA7526004FB6AB /* LexD.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexD.cxx; path = ../../lexers/LexD.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :263:
114B6ED411FA7526004FB6AB /* LexEiffel.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexEiffel.cxx; path = ../../lexers/LexEiffel.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :264:
114B6ED511FA7526004FB6AB /* LexErlang.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexErlang.cxx; path = ../../lexers/LexErlang.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :265:
114B6ED611FA7526004FB6AB /* LexEScript.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexEScript.cxx; path = ../../lexers/LexEScript.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :266:
114B6ED711FA7526004FB6AB /* LexFlagship.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexFlagship.cxx; path = ../../lexers/LexFlagship.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :267:
114B6ED811FA7526004FB6AB /* LexForth.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexForth.cxx; path = ../../lexers/LexForth.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :268:
114B6ED911FA7526004FB6AB /* LexFortran.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexFortran.cxx; path = ../../lexers/LexFortran.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :269:
114B6EDA11FA7526004FB6AB /* LexGAP.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexGAP.cxx; path = ../../lexers/LexGAP.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :270:
114B6EDB11FA7526004FB6AB /* LexGui4Cli.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexGui4Cli.cxx; path = ../../lexers/LexGui4Cli.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :271:
114B6EDC11FA7526004FB6AB /* LexHaskell.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexHaskell.cxx; path = ../../lexers/LexHaskell.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :272:
114B6EDD11FA7526004FB6AB /* LexHTML.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexHTML.cxx; path = ../../lexers/LexHTML.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :273:
114B6EDE11FA7526004FB6AB /* LexInno.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexInno.cxx; path = ../../lexers/LexInno.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :274:
114B6EDF11FA7526004FB6AB /* LexKix.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexKix.cxx; path = ../../lexers/LexKix.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :275:
114B6EE011FA7526004FB6AB /* LexLisp.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexLisp.cxx; path = ../../lexers/LexLisp.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :276:
114B6EE111FA7526004FB6AB /* LexLout.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexLout.cxx; path = ../../lexers/LexLout.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :277:
114B6EE211FA7526004FB6AB /* LexLua.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexLua.cxx; path = ../../lexers/LexLua.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :278:
114B6EE311FA7526004FB6AB /* LexMagik.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMagik.cxx; path = ../../lexers/LexMagik.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :279:
114B6EE411FA7526004FB6AB /* LexMarkdown.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMarkdown.cxx; path = ../../lexers/LexMarkdown.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :280:
114B6EE511FA7526004FB6AB /* LexMatlab.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMatlab.cxx; path = ../../lexers/LexMatlab.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :281:
114B6EE611FA7526004FB6AB /* LexMetapost.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMetapost.cxx; path = ../../lexers/LexMetapost.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :282:
114B6EE711FA7526004FB6AB /* LexMMIXAL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMMIXAL.cxx; path = ../../lexers/LexMMIXAL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :283:
114B6EE811FA7526004FB6AB /* LexMPT.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMPT.cxx; path = ../../lexers/LexMPT.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :284:
114B6EE911FA7526004FB6AB /* LexMSSQL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMSSQL.cxx; path = ../../lexers/LexMSSQL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :285:
114B6EEA11FA7526004FB6AB /* LexMySQL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMySQL.cxx; path = ../../lexers/LexMySQL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :286:
114B6EEB11FA7526004FB6AB /* LexNimrod.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexNimrod.cxx; path = ../../lexers/LexNimrod.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :287:
114B6EEC11FA7526004FB6AB /* LexNsis.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexNsis.cxx; path = ../../lexers/LexNsis.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :288:
114B6EED11FA7526004FB6AB /* LexOpal.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexOpal.cxx; path = ../../lexers/LexOpal.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :289:
114B6EEF11FA7526004FB6AB /* LexPascal.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPascal.cxx; path = ../../lexers/LexPascal.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :290:
114B6EF011FA7526004FB6AB /* LexPB.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPB.cxx; path = ../../lexers/LexPB.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :291:
114B6EF111FA7526004FB6AB /* LexPerl.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPerl.cxx; path = ../../lexers/LexPerl.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :292:
114B6EF211FA7526004FB6AB /* LexPLM.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPLM.cxx; path = ../../lexers/LexPLM.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :293:
114B6EF311FA7526004FB6AB /* LexPOV.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPOV.cxx; path = ../../lexers/LexPOV.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :294:
114B6EF411FA7526004FB6AB /* LexPowerPro.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerPro.cxx; path = ../../lexers/LexPowerPro.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :295:
114B6EF511FA7526004FB6AB /* LexPowerShell.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerShell.cxx; path = ../../lexers/LexPowerShell.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :296:
114B6EF611FA7526004FB6AB /* LexProgress.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexProgress.cxx; path = ../../lexers/LexProgress.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :297:
114B6EF711FA7526004FB6AB /* LexPS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPS.cxx; path = ../../lexers/LexPS.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :298:
114B6EF811FA7526004FB6AB /* LexPython.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPython.cxx; path = ../../lexers/LexPython.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :299:
114B6EF911FA7526004FB6AB /* LexR.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexR.cxx; path = ../../lexers/LexR.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :300:
114B6EFA11FA7526004FB6AB /* LexRebol.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexRebol.cxx; path = ../../lexers/LexRebol.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :301:
114B6EFB11FA7526004FB6AB /* LexRuby.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexRuby.cxx; path = ../../lexers/LexRuby.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :302:
114B6EFC11FA7526004FB6AB /* LexScriptol.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexScriptol.cxx; path = ../../lexers/LexScriptol.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :303:
114B6EFD11FA7526004FB6AB /* LexSmalltalk.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSmalltalk.cxx; path = ../../lexers/LexSmalltalk.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :304:
114B6EFE11FA7526004FB6AB /* LexSML.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSML.cxx; path = ../../lexers/LexSML.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :305:
114B6EFF11FA7526004FB6AB /* LexSorcus.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSorcus.cxx; path = ../../lexers/LexSorcus.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :306:
114B6F0011FA7526004FB6AB /* LexSpecman.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpecman.cxx; path = ../../lexers/LexSpecman.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :307:
114B6F0111FA7526004FB6AB /* LexSpice.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpice.cxx; path = ../../lexers/LexSpice.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :308:
114B6F0211FA7526004FB6AB /* LexSQL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSQL.cxx; path = ../../lexers/LexSQL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :309:
114B6F0311FA7526004FB6AB /* LexTACL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTACL.cxx; path = ../../lexers/LexTACL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :310:
114B6F0411FA7526004FB6AB /* LexTADS3.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTADS3.cxx; path = ../../lexers/LexTADS3.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :311:
114B6F0511FA7526004FB6AB /* LexTAL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTAL.cxx; path = ../../lexers/LexTAL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :312:
114B6F0611FA7526004FB6AB /* LexTCL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCL.cxx; path = ../../lexers/LexTCL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :313:
114B6F0711FA7526004FB6AB /* LexTeX.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTeX.cxx; path = ../../lexers/LexTeX.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :314:
114B6F0811FA7526004FB6AB /* LexTxt2tags.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTxt2tags.cxx; path = ../../lexers/LexTxt2tags.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :315:
114B6F0911FA7526004FB6AB /* LexVB.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexVB.cxx; path = ../../lexers/LexVB.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :316:
114B6F0A11FA7526004FB6AB /* LexVerilog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexVerilog.cxx; path = ../../lexers/LexVerilog.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :317:
114B6F0B11FA7526004FB6AB /* LexVHDL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexVHDL.cxx; path = ../../lexers/LexVHDL.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :318:
114B6F0C11FA7526004FB6AB /* LexYAML.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexYAML.cxx; path = ../../lexers/LexYAML.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :390:
11594BE7155B91DF0099E1FA /* LexOScript.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexOScript.cxx; path = ../../lexers/LexOScript.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :391:
11594BE8155B91DF0099E1FA /* LexVisualProlog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexVisualProlog.cxx; path = ../../lexers/LexVisualProlog.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :392:
1160E0371803651C00BCEBCB /* LexRust.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexRust.cxx; path = ../../lexers/LexRust.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :393:
117ACE9014A29A1E002876F9 /* LexTCMD.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCMD.cxx; path = ../../lexers/LexTCMD.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :395:
11A0A8A0148602DF0018D143 /* LexCoffeeScript.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCoffeeScript.cxx; path = ../../lexers/LexCoffeeScript.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :396:
11BB124C12FF9C1300F6BCF7 /* LexModula.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexModula.cxx; path = ../../lexers/LexModula.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :397:
11BEB6A114EF189600BDE92A /* LexECL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexECL.cxx; path = ../../lexers/LexECL.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :398:
11F35FDA12AEFAF100F0236D /* LexA68k.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexA68k.cxx; path = ../../lexers/LexA68k.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :401:
11FDAEB6174E1A9700FA161B /* LexSTTXT.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSTTXT.cxx; path = ../../lexers/LexSTTXT.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :402:
11FDD0DF17C480D4001541B9 /* LexKVIrc.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexKVIrc.cxx; path = ../../lexers/LexKVIrc.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :403:
11FF3FE11810EB3900E13F13 /* LexDMAP.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMAP.cxx; path = ../../lexers/LexDMAP.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :424:
28064A04190F12E100E6E47F /* LexDMIS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMIS.cxx; path = ../../lexers/LexDMIS.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :425:
28A067101A36B42600B4966A /* LexHex.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexHex.cxx; path = ../../lexers/LexHex.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :432:
28A7D6041995E47D0062D204 /* LexRegistry.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexRegistry.cxx; path = ../../lexers/LexRegistry.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :433:
28B647061B54C0720009DC49 /* LexBatch.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBatch.cxx; path = ../../lexers/LexBatch.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :434:
28B647071B54C0720009DC49 /* LexDiff.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexDiff.cxx; path = ../../lexers/LexDiff.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :435:
28B647081B54C0720009DC49 /* LexErrorList.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexErrorList.cxx; path = ../../lexers/LexErrorList.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :436:
28B647091B54C0720009DC49 /* LexMake.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMake.cxx; path = ../../lexers/LexMake.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :437:
28B6470A1B54C0720009DC49 /* LexNull.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexNull.cxx; path = ../../lexers/LexNull.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :438:
28B6470B1B54C0720009DC49 /* LexProps.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexProps.cxx; path = ../../lexers/LexProps.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :440:
28C40CA71CB7321200B089F2 /* LexJSON.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexJSON.cxx; path = ../../lexers/LexJSON.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :441:
28D191A11DEA72C800159938 /* LexEDIFACT.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexEDIFACT.cxx; path = ../../lexers/LexEDIFACT.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/project.pbxproj :445:
28FDA42019B6967B00BE27D7 /* LexBibTeX.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBibTeX.cxx; path = ../../lexers/LexBibTeX.cxx; sourceTree = "<group>"; };
azawawi/perl6-gtk-scintilla
…/AppController.mm :107:
// Number of styles we use with this lexer.
azawawi/perl6-gtk-scintilla
…/AppController.mm :177:
// Some special lexer properties.
azawawi/perl6-gtk-scintilla
…/ScintillaView.mm :2008:
* Specialized property setter for lexer properties, which are commonly passed as strings.
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :8:
// Some non-explicit constructors are used for conversions or are private to lexers
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :18:
// Suppress most lexer warnings since the lexers are maintained by others
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :19:
redundantCondition:scintilla/lexers/LexA68k.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :20:
useInitializationList:scintilla/lexers/LexAsm.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :21:
useInitializationList:scintilla/lexers/LexBasic.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :22:
uninitMemberVar:scintilla/lexers/LexBash.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :23:
variableScope:scintilla/lexers/LexBash.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :24:
variableScope:scintilla/lexers/LexBatch.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :25:
variableScope:scintilla/lexers/LexCmake.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :26:
variableScope:scintilla/lexers/LexCSS.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :27:
useInitializationList:scintilla/lexers/LexD.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :28:
variableScope:scintilla/lexers/LexErlang.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :29:
variableScope:scintilla/lexers/LexGui4Cli.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :30:
variableScope:scintilla/lexers/LexInno.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :31:
variableScope:scintilla/lexers/LexLaTeX.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :32:
variableScope:scintilla/lexers/LexMetapost.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :33:
variableScope:scintilla/lexers/LexModula.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :34:
variableScope:scintilla/lexers/LexNimrod.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :35:
variableScope:scintilla/lexers/LexNsis.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :36:
variableScope:scintilla/lexers/LexOpal.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :37:
variableScope:scintilla/lexers/LexPB.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :38:
variableScope:scintilla/lexers/LexProgress.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :39:
variableScope:scintilla/lexers/LexRuby.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :40:
uninitMemberVar:scintilla/lexers/LexRuby.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :41:
variableScope:scintilla/lexers/LexSpecman.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :42:
clarifyCalculation:scintilla/lexers/LexTADS3.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :43:
invalidscanf:scintilla/lexers/LexTCMD.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :44:
variableScope:scintilla/lexers/LexTeX.cxx
azawawi/perl6-gtk-scintilla
…/cppcheck.suppress :45:
variableScope:scintilla/lexers/LexVHDL.cxx
azawawi/perl6-gtk-scintilla
…/Lexer.txt :1:
How to write a scintilla lexer
azawawi/perl6-gtk-scintilla
…/Lexer.txt :3:
A lexer for a particular language determines how a specified range of
azawawi/perl6-gtk-scintilla
…/Lexer.txt :4:
text shall be colored. Writing a lexer is relatively straightforward
azawawi/perl6-gtk-scintilla
…/Lexer.txt :5:
because the lexer need only color given text. The harder job of
azawawi/perl6-gtk-scintilla
…/Lexer.txt :7:
Scintilla itself, that is, the lexer's caller.
azawawi/perl6-gtk-scintilla
…/Lexer.txt :12:
The lexer for language LLL has the following prototype:
azawawi/perl6-gtk-scintilla
…/Lexer.txt :20:
The styler parameter is an Accessor object. The lexer must use this
azawawi/perl6-gtk-scintilla
…/Lexer.txt :21:
object to access the text to be colored. The lexer gets the character
azawawi/perl6-gtk-scintilla
…/Lexer.txt :25:
recolored; the lexer must determine the proper color for all characters
azawawi/perl6-gtk-scintilla
…/Lexer.txt :33:
newline terminates the initStyle state the lexer should enter its
azawawi/perl6-gtk-scintilla
…/Lexer.txt :36:
The keywordlists parameter specifies the keywords that the lexer must
azawawi/perl6-gtk-scintilla
…/Lexer.txt :38:
the recognition of keywords. Present lexers use a helper function
azawawi/perl6-gtk-scintilla
…/Lexer.txt :44:
The lexer code
azawawi/perl6-gtk-scintilla
…/Lexer.txt :46:
The task of a lexer can be summarized briefly: for each range r of
azawawi/perl6-gtk-scintilla
…/Lexer.txt :47:
characters that are to be colored the same, the lexer should call
azawawi/perl6-gtk-scintilla
…/Lexer.txt :51:
where i is the position of the last character of the range r. The lexer
azawawi/perl6-gtk-scintilla
…/Lexer.txt :63:
lexer.
azawawi/perl6-gtk-scintilla
…/Lexer.txt :68:
There are at least two ways to organize the code of each lexer. Present
azawawi/perl6-gtk-scintilla
…/Lexer.txt :69:
lexers use what might be called a "character-based" approach: the outer
azawawi/perl6-gtk-scintilla
…/Lexer.txt :131:
allowed within strings and comments. In such contexts, lexers should
azawawi/perl6-gtk-scintilla
…/Lexer.txt :142:
Folding may be performed in the lexer function. It is better to use a
azawawi/perl6-gtk-scintilla
…/Lexer.txt :145:
lexer function if folding is enabled. The rest of this section explains
azawawi/perl6-gtk-scintilla
…/Lexer.txt :146:
how to perform folding within the lexer function.
azawawi/perl6-gtk-scintilla
…/Lexer.txt :148:
During initialization, lexers that support folding set
azawawi/perl6-gtk-scintilla
…/Lexer.txt :152:
If folding is enabled in the editor, fold will be TRUE and the lexer
azawawi/perl6-gtk-scintilla
…/Lexer.txt :165:
depends on the language. For C++, it is incremented when the lexer sees
azawawi/perl6-gtk-scintilla
…/Lexer.txt :166:
a '{' and decremented when the lexer sees a '}' (outside of strings and
azawawi/perl6-gtk-scintilla
…/Lexer.txt :171:
lexer considers that the line contains nothing but whitespace. The
azawawi/perl6-gtk-scintilla
…/Lexer.txt :174:
line. However, the lexer may have some other basis for determining a
azawawi/perl6-gtk-scintilla
…/Lexer.txt :175:
fold point. For example, a lexer might create a header line for the
azawawi/perl6-gtk-scintilla
…/Lexer.txt :182:
For example, the C++ lexer contains the following code when a newline is
azawawi/perl6-gtk-scintilla
…/Lexer.txt :203:
The following code appears in the C++ lexer just before exit:
azawawi/perl6-gtk-scintilla
…/Lexer.txt :217:
The writer of a lexer may safely ignore performance considerations: the
azawawi/perl6-gtk-scintilla
…/Lexer.txt :220:
important optimizations; Scintilla ensures that a lexer will be called
azawawi/perl6-gtk-scintilla
…/SciCoding.html :110:
closely than SciTE except for lexers which are relatively independent modules.
azawawi/perl6-gtk-scintilla
…/SciCoding.html :259:
Submitting a lexer
azawawi/perl6-gtk-scintilla
…/SciCoding.html :270:
<p>Functions, structs and classes in lexers should be in an unnamed namespace (see LexCPP)
azawawi/perl6-gtk-scintilla
…/SciCoding.html :271:
or be marked "static" so they will not leak into other lexers.</p>
azawawi/perl6-gtk-scintilla
…/SciCoding.html :272:
<p>If you copy from an existing lexer, remove any code that is not needed since it makes it
azawawi/perl6-gtk-scintilla
…/SciCoding.html :274:
<p>When modifying an existing lexer, try to maintain as much compatibility as possible.
azawawi/perl6-gtk-scintilla
…/SciCoding.html :280:
Properties provided by a new lexer should follow the naming conventions
azawawi/perl6-gtk-scintilla
…/SciCoding.html :283:
lexer.&lt;lexername&gt;.* and those that control folding to be named
azawawi/perl6-gtk-scintilla
…/SciCoding.html :284:
fold.&lt;lexername&gt;.*.
azawawi/perl6-gtk-scintilla
…/SciCoding.html :285:
Examples are "lexer.python.literals.binary" and "fold.haskell.imports".
azawawi/perl6-gtk-scintilla
…/SciCoding.html :289:
any lexer.
azawawi/perl6-gtk-scintilla
…/SciCoding.html :292:
See LexPython for examples of properties in an object lexer and LexHTML for a functional lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :131:
<a class="jump" href="Lexer.txt">A detailed description of how to write a lexer, including a
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :133:
<a class="jump" href="http://sphere.sourceforge.net/flik/docs/scintilla-container\_lexer.html">
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :134:
How to implement a lexer in the container</a>.<br />
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :591:
When wanting to completely restyle the document, for example after choosing a lexer, the
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2200:
By default, the colour of visible white space is determined by the lexer in use. The
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2202:
the lexer's colours with <code>SCI_SETWHITESPACEFORE</code> and
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2312:
the current lexer also support additional Unicode line ends.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2324:
may optionally be interpreted when Unicode line ends is turned on and the current lexer also supports
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2360:
by the current lexer. This is a bit set although there is currently only a single choice
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2368:
but this will be ineffective unless the lexer also allows you Unicode line ends.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2565:
one of the standard lexers, or if you can write your own, then a lexer is probably the easiest
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2571:
alternative, you might use idle time to style the document. Even if you use a lexer, you might
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2649:
lexer styles that can be set, numbered 0 to <code>STYLE_MAX</code> (255).
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :2897:
number used by the C and C++ lexer to display literal strings; it has the value 6). This
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :3436:
256 up to 511 so they do not overlap styles set by lexers. Each style number set with <code>SCI_MARGINSETSTYLE</code>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :3556:
512 up to 767 so they do not overlap styles set by lexers (or margins if margins offset is 256).
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :4233:
by lexers (0..7) a range for use by containers
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :5787:
numeric "fold level" to each line. The fold level is most easily set by a lexer, but you can
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :5876:
If you use a lexer, you should not need to use <code>SCI_SETFOLDLEVEL</code> as this is far
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :5877:
better handled by the lexer. You will need to use <code>SCI_GETFOLDLEVEL</code> to decide how
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6520:
better still, write your own lexer following the pattern of one of the existing ones.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6522:
<p>Scintilla also supports external lexers. These are DLLs (on Windows) or .so modules (on GTK+/Linux) that export three
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6525:
<a class="message" href="#SCI_SETLEXER">SCI_SETLEXER(int lexer)</a><br />
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6556:
<p><b id="SCI_SETLEXER">SCI_SETLEXER(int lexer)</b><br />
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6558:
You can select the lexer to use with an integer code from the <code>SCLEX_*</code> enumeration
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6559:
in <code>Scintilla.h</code>. There are two codes in this sequence that do not use lexers:
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6563:
<code>SCLEX_AUTOMATIC</code> value; this identifies additional external lexers that Scintilla
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6564:
assigns unused lexer numbers to.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6568:
<code>SCI_SETLEXERLANGUAGE</code> lets you select a lexer by name, and is the only method if you are using an
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6569:
external lexer or if you have written a lexer module for a language of your own and do not wish
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6570:
to assign it an explicit lexer number. To select an existing lexer, set <code class="parameter">language</code> to
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6572:
or "Python". To locate the name for the built-in lexers, open the relevant
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6576:
<p>To test if your lexer assignment worked, use <a class="message"
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6577:
href="#SCI_GETLEXER"><code>SCI_GETLEXER</code></a> before and after setting the new lexer to
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6578:
see if the lexer number changed.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6580:
<p><code>SCI_GETLEXERLANGUAGE</code> retrieves the name of the lexer.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6583:
Load a lexer implemented in a shared library. This is a .so file on GTK+/Linux or a .DLL file on Windows.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6587:
This requests the current lexer or the container (if the lexer is set to
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6591:
<code>"1"</code> and your lexer or container supports folding, fold levels are also set. This
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6595:
Indicate that the internal state of a lexer has changed over a range and therefore
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6601:
Information may be retrieved about the properties that can be set for the current lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6602:
This information is only available for newer lexers.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6604:
If the lexer does not support this call then an empty string is returned.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6610:
You can communicate settings to lexers with keyword:value string pairs. There is no limit to
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6623:
<p>Currently the "fold" property is defined for most of the lexers to set the fold structure if
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6626:
interpreted as integers. Search the lexer sources for <code>GetPropertyInt</code> to see how
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6629:
<p>There is a convention for naming properties used by lexers so that the set of properties can be found by scripts.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6630:
Property names should start with "lexer.&lt;lexer&gt;." or "fold.&lt;lexer&gt;." when they apply to one
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6631:
lexer or start with "lexer." or "fold." if they apply to multiple lexers.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6633:
<p>Applications may discover the set of properties used by searching the source code of lexers for lines that contain
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6670:
You can set up to 9 lists of keywords for use by the current lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6678:
<p>How these keywords are used is entirely up to the lexer. Some languages, such as HTML may
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6681:
is for SGML and DTD keywords. Review the lexer code to see examples of keyword list. A fully
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6682:
conforming lexer sets the fourth argument of the <code>LexerModule</code> constructor to be a
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6687:
lexer that colours keywords and you could change languages by changing the keywords in set 0.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6688:
There is nothing to stop you building your own keyword lists into the lexer, but this means
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6689:
that the lexer must be rebuilt if more keywords are added.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6730:
Call into a lexer in a way not understood by Scintilla.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6736:
Previously lexers were defined by providing lexing and folding functions but creating an object
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6737:
to handle the interaction of a lexer with a document allows the lexer to store state information that
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6738:
can be used during lexing. For example a C++ lexer may store a set of preprocessor definitions
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6741:
<p>A set of helper classes allows older lexers defined by functions to be used in Scintilla.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6805:
<p><code>Release</code> is called to destroy the lexer object.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6808:
application and a lexer. An example would be where an application
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6810:
about system headers (like Windows.h) and provides this to the lexer
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6816:
Previously, lexers were called with a range that started one line before the range that
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6818:
The new approach allows the lexer to decide whether to backtrack or to handle this
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6824:
To allow lexers to report which line ends they support, and to support substyles,
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6825:
<code>Ilexer</code> is extended to <code>ILexerWithSubStyles</code>.
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6876:
lines. For example, if the C++ lexer is greying out inactive code
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6879:
document. The lexer can call <code>ChangeLexerState</code> to signal to
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :6892:
To allow lexers to determine the end position of a line and thus more easily support Unicode line ends
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :7052:
lexer, you will receive this notification when Scintilla is about to display or print text that
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :7408:
<td>The internal state of a lexer has changed over a range.</td>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :8139:
<h3>Ensuring lexers are linked into Scintilla</h3>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :8141:
<p>Depending on the compiler and linker used, the lexers may be stripped out. This is most
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :8142:
often caused when building a static library. To ensure the lexers are linked in, the
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :8145:
<h3>Changing set of lexers</h3>
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :8147:
<p>To change the set of lexers in Scintilla, add and remove lexer source files
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :8148:
(<code>Lex*.cxx</code>) from the <code>scintilla/lexers directory</code> and run the
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :8152:
following the patterns of other lexers. The important thing is to include
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :8154:
lmMyLexer(...);</code> in your lexer source code.</p>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :542:
The Diff lexer recognizes deleted lines that start with "--- ".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :545:
The Lua lexer requires the first line to start with "#!" to be treated as a shebang comment,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :550:
The Matlab lexer requires block comment start and end to be alone on a line.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :554:
The Python lexer supports f-strings with new styles, allows Unicode identifiers,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :671:
Baan folder accommodates sections and lexer fixes definition of SCE_BAAN_FUNCDEF.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :674:
EDIFACT lexer and folder added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :685:
YAML lexer fixed style of references and keywords when followed by a comment.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :757:
The WordList class in lexlib used by lexers adds an InListAbridged method for
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :761:
The Baan lexer was changed significantly with more lexical states, keyword sets,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :765:
The CoffeeScript lexer styles interpolated code in strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :769:
The Progress lexer "progress" has been replaced with a new lexer "abl"
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :776:
The PowerShell lexer understands the grave accent escape character.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :780:
The YAML lexer recognizes inline comments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :846:
The C++ lexer can fold on #else and #elif with the fold.cpp.preprocessor.at.else property.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :850:
The errorlist lexer detects warnings from Visual C++ which do not contain line numbers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :853:
The HTML lexer no longer treats "&lt;?" inside a string in a script as potentially starting an XML document.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :857:
The HTML lexer fixes a problem resuming at a script start where the starting state continued
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :917:
The Progress lexer now allows comments preceded by a tab.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :954:
JSON lexer added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :958:
The C++ lexer fixes a bug with multi-line strings with line continuation where the string style
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :963:
The Python lexer treats '@' as an operator except when it is the first visible character on a line.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :967:
The Rust lexer allows '?' as an operator.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1014:
For the HTML lexer, limit the extent of Mako line comments to finish before
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1024:
The Progress lexer supports hexadecimal numeric literals,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1029:
Ruby lexer treats alternate hash key syntax "key:" as a symbol.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1033:
Rust lexer handles bracketed Unicode string escapes like "\u{123abc}".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1090:
Bash lexer flags incomplete here doc delimiters as syntax errors.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1098:
Errorlist lexer highlights warning messages from the Microsoft linker.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1101:
Errorlist lexer fixes bug with final line in escape sequence recognition mode.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1104:
Lua lexer includes '&amp;' and '|' bitwise operators for Lua 5.3.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1108:
Perl lexer updated for Perl 5.20 and 5.22.<br />
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1122:
Visual Prolog lexer recognizes numbers more accurately and allows non-ASCII verbatim
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1171:
Fix SciTE crashes when using LPEG lexers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1206:
CoffeeScript lexer highlights ranges correctly.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1210:
Markdown lexer treats line starts consistently to always highlight *foo* or similar at line start.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1266:
CoffeeScript lexer adds lexical class for instance properties and fixes some cases of regex highlighting.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1270:
The errorlist lexer understands some ANSI escape sequences to change foreground colour and intensity.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1274:
The errorlist lexer allows the line number to be 0 in GCC errors as some tools report whole file
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1278:
MySql lexer fixes empty comments /**/ so the comment state does not continue.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1335:
Applications and external lexers should start using the new type names so that
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1355:
The Python lexer supports substyles for identifiers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1394:
LexOthers.cxx file split into one file per lexer: LexBatch, LexDiff,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1430:
Verilog lexer recognises protected regions and the folder folds protected regions.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1472:
C++ lexer fixes empty backquoted string.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1476:
C++ lexer fixes #undef directive.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1547:
SQL lexer fixes handling of '+' and '-' in numbers so the '-' in '1-1' is seen as an operator and for
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1551:
TCL lexer reverts change to string handling.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1555:
Verilog lexer fixes bugs with macro styling.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1560:
VHDL lexer supports extended identifiers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1618:
C++ lexer adds lexer.cpp.verbatim.strings.allow.escapes option that allows verbatim (@") strings
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1622:
Rust lexer accepts new 'is'/'us' integer suffixes instead of 'i'/'u'.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1630:
SQL lexer fixes a bug with the q-quote operator.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1633:
TCL lexer fixes a bug with some strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1637:
Verilog lexer handles escaped identifiers that begin with \ and end with space like \reset* .
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1691:
Shell lexer fixes three issues with here-documents.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1695:
Verilog lexer highlights doc comment keywords; has separate styles for input, output, and inout ports
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1696:
(lexer.verilog.portstyling); fixes a bug in highlighting numbers; can treat upper-case identifiers as
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1697:
keywords (lexer.verilog.allupperkeywords); and can use different styles for code that is inactive due
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1698:
to preprocessor commands (lexer.verilog.track.preprocessor, lexer.verilog.update.preprocessor).
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1769:
CoffeeScript lexer fixes "/*" to not be a comment.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1818:
BibTeX lexer added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1822:
SQL lexer supports the q-quote operator as SCE_SQL_QOPERATOR(24).
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1825:
VHDL lexer supports block comments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1898:
HTML lexer fixes a crash with SGML after a Mako comment.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1902:
KiXtart lexer adds a block comment state.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1906:
Matlab lexer fixes transpose operations like "X{1}'".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1910:
Ruby lexer fixes bugs with the syntax of symbols including allowing a symbol to end with '?'.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1914:
Rust lexer supports byte string literals, naked CR can be escaped in strings, and files starting with
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1976:
Some elements used by lexers no longer take number of bits or mask arguments so lexers may need to be
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1984:
C++ lexer fixes crash for "#define x(".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1988:
C++ lexer fixes raw string recognition so that R"xxx(blah)xxx" is styled as SCE_C_STRINGRAW.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1991:
The Postscript lexer no longer marks token edges with indicators as this used style byte indicators.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1994:
The Scriptol lexer no longer displays indicators for poor indentation as this used style byte indicators.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :1997:
TCL lexer fixes names of keyword sets.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2001:
Shell lexer fixes fold matching problem caused by "&lt;&lt;&lt;".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2070:
DMIS lexer added. DMIS is a language for coordinate measuring machines.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2078:
C++ lexer understands more preprocessor statements. #if defined SYMBOL is understood.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2085:
C++ lexer can highlight task marker keywords in comments as SCE_C_TASKMARKER.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2088:
C++ lexer can optionally highlight escape sequences in strings as SCE_C_ESCAPESEQUENCE.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2091:
C++ lexer supports Go back quoted raw string literals with lexer.cpp.backquoted.strings option.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2213:
Additional assembler lexer variant As(SCLEX_AS) for Unix assembly code which uses '#' for comments and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2217:
Fix Coffeescript lexer for keyword style extending past end of word.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2257:
Fix 3.3.8 bug where external lexers became inaccessible.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2279:
Basic lexer highlights hex, octal, and binary numbers in FreeBASIC which use the prefixes
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2284:
C++ lexer fixes bug where keyword followed immediately by quoted string continued
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2289:
Matlab lexer treats '!' differently for Matlab and Octave languages.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2293:
Rust lexer improved with nested comments, more compliant doc-comment detection,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2350:
Basic lexer supports multiline comments in FreeBASIC.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2354:
Bash lexer allows '#' inside words..
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2358:
C++ lexer recognizes C++11 user-defined literals and applies lexical class SCE_C_USERLITERAL.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2361:
C++ lexer allows single quote characters as digit separators in numeric literals like 123'456 as this is
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2365:
C++ lexer fixes bug with #include statements without " or &gt; terminating filename.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2369:
C++ lexer fixes split of Doxygen keywords @code{.fileExtension} and @param[in,out].
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2373:
C++ lexer styles Doxygen keywords at end of document.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2376:
Cmake lexer fixes bug with empty comments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2461:
StyleFromSubStyle and PrimaryStyleFromStyle methods were added to ILexerWithSubStyles so each lexer can implement these.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2468:
Avoid false matches in errorlist lexer which is used for the SciTE output pane
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2472:
Perl lexer fixes bugs with multi-byte characters, including in HEREDOCs and PODs.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2480:
Visual Prolog lexer updated with better support for string literals and Unicode.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2589:
Bash lexer fixed quoted HereDoc delimiters.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2593:
MS SQL lexer fixed ';' to appear as an operator.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2597:
Structured Text lexer fixed styling of enumeration members.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2662:
Handling of UTF-8 and DBCS text in lexers improved with methods ForwardBytes and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2672:
which can be useful in lexers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2687:
A68K lexer updated.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2690:
CoffeeScript lexer fixes a bug with comment blocks.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2694:
ECL lexer regular expression code fixed.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2698:
errorlist lexer only recognises Perl diagnostics when there is a filename between
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2702:
Haskell lexer fixed to avoid unnecessary full redraws.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2707:
Lua lexer fixes bug in labels with UTF-8 text.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2711:
Perl lexer fixes bug in string interpolation with UTF-8 text.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2834:
C++ lexer adds style for preprocessor doc comment.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2838:
Haskell lexer and folder improved. Separate mode for literate Haskell "literatehaskell" SCLEX_LITERATEHASKELL.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2842:
LaTeX lexer bug fixed for Unicode character following '\'.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2846:
PowerShell lexer recognises here strings and doccomment keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2861:
Fix lexer problem where no line end was seen at end of document.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2906:
Most lexers now lex an extra NUL byte at the end of the
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2912:
Haskell lexer improved in several ways.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2916:
Matlab/Octave lexer recognises block comments and ... comments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2920:
Ruby lexer crash fixed with keyword at start of document.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2965:
C++ lexer no longer recognises raw (R"") strings when the first character after "
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :2970:
HTML lexer recognises JavaScript RegEx literals in more contexts.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3002:
For Unicode documents, lexers that use StyleContext will retrieve whole characters
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3008:
The C++ lexer understands the #undef directive when determining preprocessor definitions.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3012:
The errorlist lexer recognises gcc include path diagnostics that appear before an error.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3019:
HTML lexer does not interrupt comment style for processing instructions.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3063:
C++ lexer fixes problem with showing inactive sections when preprocessor lines contain trailing comment.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3067:
C++ lexer fixes problem with JavaScript regular expressions with '/' in character ranges.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3075:
LaTeX lexer improves styling of math environments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3079:
MySQL lexer implements hidden commands.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3145:
Bash lexer supports nested delimiter pairs.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3242:
Fix long XML script tag handling in XML lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3341:
Less/Hss support added to CSS lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3345:
C++ lexer style SCE_C_PREPROCESSORCOMMENT added for stream comments in preprocessor.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3349:
Fix incorrect styling of inactive code in C++ lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3353:
Fix incorrect styling by C++ lexer after empty lines in preprocessor style.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3356:
C++ lexer option "lexer.cpp.allow.dollars" fixed so can be turned off after being on.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3360:
Fortran fixed format lexer fixed to style comments from column 73.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3368:
Fortran lexer fixes styling after comment line ending with '&amp;'.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3372:
Fortran lexer styles preprocessor lines so they do not trigger incorrect folding.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3479:
HTML lexer bug fixed with inconsistent highlighting for PHP when attribute on separate line from tag.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3483:
HTML lexer bug fixed for JavaScript block comments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3553:
Fixed single quoted strings in bash lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3557:
Incorrect highlighting fixed in C++ lexer for continued lines.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3561:
Hang fixed in diff lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3637:
ECL lexer added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3641:
CPP lexer fixes styling after document comment keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3649:
XML lexer avoids entering a bad mode due to complex preprocessor instructions.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3799:
CSS lexer gains support for SCSS.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3803:
CPP lexer fixes problems in the preprocessor structure caused by continuation lines.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3807:
Errorlist lexer handles column numbers for GCC format diagnostics.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3816:
Ruby lexer fixes bug where '=' at start of file caused whole file to appear as a comment.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3913:
CoffeeScript lexer added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :3916:
C++ lexer fixes crash with "#if defined( XXX 1".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4056:
C++ lexer supports Pike hash quoted strings when turned on with lexer.cpp.hashquoted.strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4102:
C++ lexer fixed a bug with raw strings being recognised too easily.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4106:
LaTeX lexer improved with more states and fixes to most outstanding bugs.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4112:
Lua lexer updates for Lua 5.2 beta with goto labels and "\z" string escape.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4121:
Perl lexer updated for Perl 5.14.0 with 0X and 0B numeric literal prefixes, break keyword and "+" supported in subroutine prototypes.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4128:
Markdown lexer fixed to not change state with "_" in middle of word.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4216:
Python lexer has lexer.python.keywords2.no.sub.identifiers option to avoid highlighting second set of
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4225:
SciTE treats LPEG lexers the same as script lexers by setting all 8 style bits.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4309:
Matlab lexer does not special case '\' in single quoted strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4316:
Verilog lexer supports SystemVerilog folding and keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4363:
SciTE script lexers can use 256 styles.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4409:
Batch file lexer allows braces '(' or ')' inside variable names.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4412:
The cpp lexer only recognises Vala triple quoted strings when lexer.cpp.triplequoted.strings property is set.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4416:
Make file lexer treats a variable with a nested variable like $(f$(qx)b) as one variable.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4424:
HTML lexer styles Django's {# #} comments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4428:
HTML lexer styles JavaScript regular expression correctly for /abc/i.test('abc');.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4432:
Inno Setup Script lexer now works properly when it restarts from middle of [CODE] section.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4437:
Lua lexer updated for Lua 5.2 with hexadecimal floating-point numbers and '\*' whitespace escaping in strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4446:
Python lexer supports cpdef keyword for Cython.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4450:
SQL folding option lexer.sql.fold.at.else renamed to fold.sql.at.else.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4454:
SQL lexer no longer treats ';' as terminating a comment.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4516:
SparseState class makes it easier to write lexers which have to remember complex state between lines.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4522:
Modula 3 lexer added along with SciTE support.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4526:
Asm, Basic, and D lexers add extra folding properties.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4529:
Raw string literals for C++0x supported in C++ lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4532:
Triple-quoted strings used in Vala language supported in C++ lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4536:
The errorlist lexer used in SciTE's output pane colours lines that start with '&lt;' as diff deletions.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4540:
The Fortran lexer correctly folds type-bound procedures from Fortran 2003.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4543:
LPeg lexer support‎ improved in SciTE.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4554:
Diff lexer fixes problem where diffs of diffs producing lines that start with "----".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4610:
C++ lexer fixed to always handle single quote strings continued past a line end.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4618:
SQL lexer allows '.' to be part of words.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4634:
SciTE only forwards properties to lexers when they have been explicitly set so the defaults set by lexers are used
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4660:
Fixed memory leak in lexer object code.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4690:
New lexer a68k for Motorola 68000 assembler.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4704:
SQL lexer has a lexer.sql.numbersign.comment option to turn off use of '#' comments
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4740:
SciTE includes support for integrating with Scintillua which allows lexers to be implemented in Lua as a
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4791:
Bash lexer bug fixed for here docs starting with &lt;&lt;-.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4795:
C++ lexer bug fixed for // comments that are continued onto a second line by a \.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4799:
C++ lexer fixes wrong highlighting for float literals containing +/-.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4803:
JavaScript lexer recognise regexes following return keyword.‎
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4807:
Ruby lexer handles % quoting better and treats range dots as operators in 1..2 and 1...2.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4858:
IDocument interface used by lexers adds BufferPointer and GetLineIndentation methods.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4898:
C++ lexer crash fixed with preprocessor expression that looked like division by 0.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4902:
Haskell lexer improved.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4914:
HTML lexer stores line state produced by a line on that line rather than on the next line.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4917:
Markdown lexer fixes infinite loop.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4925:
PowerShell lexer allows '_' as a word character.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4946:
Compatibility classes allow current lexers compiled into Scintilla to run with few changes.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4947:
The interface to external lexers has changed and existing external lexers will need to have changes
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4949:
A single lexer object is attached to a document whereas previously lexers were attached to views
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4950:
which could lead to different lexers being used for split views with confusing results.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4953:
C++ lexer understands the preprocessor enough to grey-out inactive code due to conditional compilation.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4968:
Bash lexer implements basic parsing of compound commands and constructs.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :4979:
PowerShell lexer supports multiline &lt;# .. #&gt; comments and adds 2 keyword classes.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5049:
VHDL lexer styles unclosed string correctly.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5076:
Flagship lexer for xBase languages updated to follow the language much more closely.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5080:
HTML lexer highlights Django templates in more regions.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5111:
Debug assertions in multiple lexers fixed.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5115:
CSS lexer fixed bug where @font-face displayed incorrectly
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5119:
CSS lexer fixed bug where open comment caused highlighting error.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5123:
Shell file lexer fixed highlight glitch with here docs where the first line is a comment.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5188:
SciTE may be extended with lexers written in Lua.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5202:
Django template highlighting added to the HTML lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5226:
R lexer now performs case-sensitive check for keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5265:
Erlang lexer extended set of numeric bases recognised; separate style for module:function_name; detects
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5271:
Python lexer extended with lexer.python.strings.over.newline option that allows non-triple-quoted strings to extend
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5308:
Markdown lexer added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5329:
Retrieve the name of the current lexer with SCI_GETLEXERLANGUAGE.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5332:
Progress 4GL lexer improves handling of comments in preprocessor declaration.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5336:
HTML lexer extended to handle Mako template language.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5353:
Fixed crash caused by not having sufficient styles allocated after choosing a lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5437:
Fixed problem in VB lexer with keyword at end of file.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5509:
MagikSF lexer recognises numbers correctly.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5601:
Batch file lexer understands variables surrounded by '!'.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5604:
CAML lexer also supports SML.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5607:
D lexer handles string and numeric literals more accurately. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2793782\&group\_id=2439"\>Feature #2793782.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5610:
Forth lexer is now case-insensitive and better supports numbers like $hex and %binary. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2804894\&group\_id=2439"\>Feature #2804894.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5613:
Lisp lexer treats '[', ']', '{', and '}' as balanced delimiters which is common usage. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2794989\&group\_id=2439"\>Feature #2794989.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5618:
Pascal lexer bug fixed to prevent hang when 'interface' near beginning of file. <a href="https://sourceforge.net/tracker/?func=detail\&atid=102439\&aid=2802863\&group\_id=2439"\>Bug #2802863.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5621:
Perl lexer bug fixed where previous lexical states persisted causing "/" special case styling and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5625:
XML lexer fixes bug where Unicode entities like '&amp;—' were broken into fragments. <a href="https://sourceforge.net/tracker/?func=detail\&atid=102439\&aid=2804760\&group\_id=2439"\>Bug #2804760.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5679:
COBOL lexer added. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2127406\&group\_id=2439"\>Feature #2127406.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5682:
Nimrod lexer added. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2642620\&group\_id=2439"\>Feature #2642620.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5685:
PowerPro lexer added. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2195308\&group\_id=2439"\>Feature #2195308.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5688:
SML lexer added. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2710950\&group\_id=2439"\>Feature #2710950.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5691:
SORCUS Installation file lexer added. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2343375\&group\_id=2439"\>Feature #2343375.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5694:
TACL lexer added. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2127406\&group\_id=2439"\>Feature #2127406.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5697:
TAL lexer added. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2127406\&group\_id=2439"\>Feature #2127406.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5700:
Rewritten Pascal lexer with improved folding and other fixes. <a href="https://sourceforge.net/tracker/?func=detail\&atid=352439\&aid=2190650\&group\_id=2439"\>Feature #2190650.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5706:
C++ lexer treats angle brackets in #include directives as quotes when styling.within.preprocessor. <a href="https://sourceforge.net/tracker/?func=detail\&atid=102439\&aid=2551033\&group\_id=2439"\>Bug #2551033.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5709:
Inno Setup lexer is sensitive to whether within the [Code] section and handles comments better. <a href="https://sourceforge.net/tracker/?func=detail\&atid=102439\&aid=2552973\&group\_id=2439"\>Bug #2552973.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5712:
HTML lexer does not go into script mode when script tag is self-closing.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5718:
Perl lexer fixes problem with string matching caused by line endings. <a href="https://sourceforge.net/tracker/?func=detail\&atid=102439\&aid=2648342\&group\_id=2439"\>Bug #2648342.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5721:
Progress lexer fixes problem with "last-event:function" phrase. <a href="https://sourceforge.net/tracker/?func=detail\&atid=102439\&aid=2483619\&group\_id=2439"\>Bug #2483619.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5724:
Properties file lexer extended to handle RFC2822 text when lexer.props.allow.initial.spaces on.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5727:
Python lexer adds options for Python 3 and Cython.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5730:
Shell lexer fixes heredoc problem caused by line endings. <a href="https://sourceforge.net/tracker/?func=detail\&atid=102439\&aid=2635257\&group\_id=2439"\>Bug #2635257.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5733:
TeX lexer handles comment at end of line correctly. <a href="https://sourceforge.net/tracker/?func=detail\&atid=102439\&aid=2698766\&group\_id=2439"\>Bug #2698766.</a>
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5798:
MySQL lexer added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5804:
Abaqus lexer handles program structure more correctly.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5807:
Assembler lexer works with non-ASCII text.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5810:
C++ lexer allows mixed case doc comment tags.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5813:
CSS lexer updated and works with non-ASCII.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5816:
Diff lexer adds style for changed lines, handles subversion diffs better and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5820:
FORTRAN lexer accepts more styles of compiler directive.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5823:
Haskell lexer allows hexadecimal literals.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5826:
HTML lexer improves PHP and JavaScript folding.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5829:
Script recognition in XML can be controlled with lexer.xml.allow.scripts property.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5832:
Lua lexer styles last character correctly.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5835:
Perl lexer update.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5844:
Verilog lexer updated.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5847:
Windows Batch file lexer handles %~ and %*.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5850:
YAML lexer allows non-ASCII text.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5942:
Perl lexer handles defined-or operator "//".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5945:
Octave lexer fixes "!=" operator.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :5957:
Crash fixed when line states set beyond end of line states. This occurred when lexers did not
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6038:
Multiple characters may be set for SciTE's calltip.&lt;lexer&gt;.parameters.start property.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6041:
Bash lexer handles octal literals.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6044:
C++/JavaScript lexer recognises regex literals in more situations.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6047:
Haskell lexer fixed for quoted strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6050:
HTML/XML lexer does not notice XML indicator if there is
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6061:
Perl lexer enhanced for handling minus-prefixed barewords,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6069:
Python lexer styles all of a decorator in the decorator style rather than just the name.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6072:
YAML lexer styles colons as operators.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6173:
Bug fixed in Ruby lexer where out of bounds access could occur.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6202:
Minor line end fix to PostScript lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6252:
TADS3 lexer and folder improved.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6270:
Hang fixed in HTML lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6282:
Bash lexer handles "-x" in "--x-includes..." better.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6285:
AutoIt3 lexer fixes string followed by '+'.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6359:
Ruby lexer interprets interpolated strings as expressions.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6362:
Lua lexer fixes some cases of numeric literals.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6371:
Inno setup lexer adds styling for single and double quoted strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6374:
Matlab lexer handles backslashes in string literals correctly.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6377:
HTML lexer fixed to allow "?&gt;" in comments in Basic script.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6428:
VB lexer bugs fixed for preprocessor directive below a comment or some other states and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6432:
C++ lexer allows identifiers to contain '$' and non-ASCII characters such as UTF-8.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6433:
The '$' character can be disallowed with lexer.cpp.allow.dollars=0.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6436:
Perl lexer allows UTF-8 identifiers and has some other small improvements.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6532:
Basic lexer allows include directive $include: "file name".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6535:
SQL lexer no longer bases folding on indentation.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6542:
Lexing code masks off the indicator bits on the start style before calling the lexer
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6543:
to avoid confusing the lexer when an application has used an indicator.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6556:
Bug in HTML lexer fixed where a segment of PHP could switch scripting language
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6571:
Bug fixed in bash lexer that prevented folding.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6574:
Crash fixed in bash lexer when backslash at end of file.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6602:
Lexer specifically for TCL is much more accurate than reusing C++ lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6615:
Python lexer styles comments on decorators.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6618:
HTML lexer refined handling of "?>" and "%>" within server
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6622:
Batch file lexer improved.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6625:
Eiffel lexer doesn't treat '.' as a name character.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6628:
Lua lexer handles length operator, #, and hex literals.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6631:
Properties file lexer has separate style for keys.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6703:
Ruby lexer improved to better handle here documents and non-ASCII
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6707:
Lua lexer supports long string and block comment syntax from Lua 5.1.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6710:
Bash lexer handles here documents better.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6719:
current lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6731:
Convention defined for property names to be used by lexers and folders
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6746:
Kid template language better handled by HTML lexer by finishing ASP Python
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6838:
New, more ambitious Ruby lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6849:
C++ lexer recognises keywords within line doc comments. It continues styles over line
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6854:
VB lexer improves handling of file numbers and date literals.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6860:
POV lexer improves handling of comment lines.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6863:
AU3 lexer and folder updated. COMOBJ style added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6935:
Batch file lexer understands more of the syntax and the behaviour of built in commands.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6938:
Perl lexer handles here docs better; disambiguates barewords, quote-like delimiters, and repetition operators;
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :6954:
Errorlist lexer treats lines starting with '+++' and '---' as separate
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7124:
C++ lexer is more selective about document comment keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7127:
AutoIt 3 lexer improved.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7130:
Lua lexer styles end of line characters on comment and preprocessor
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7138:
Clarion lexer updated to perform folding and have more styles.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7141:
SQL lexer gains second set of keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7144:
Errorlist lexer recognises Borland Delphi error messages.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7195:
Scintilla lexers should no longer see bits in style bytes that are outside the set
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7353:
APDL lexer updated with more lexical classes
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7356:
AutoIt3 lexer updated.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7359:
Ada lexer fixed to support non-ASCII text.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7362:
Cpp lexer now only matches exactly three slashes as starting a doc-comment so that
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7368:
CSS lexer updated to support CSS2 including second set of keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7371:
Errorlist lexer now understands Java stack trace lines.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7377:
Lisp lexer allows multiline strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7380:
Lua lexer treats .. as an operator when between identifiers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7383:
PHP lexer handles 'e' in numerical literals.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7386:
PowerBasic lexer updated for macros and optimised.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7435:
Bug fixed in HTML lexer to allow use of &lt;?xml in strings in scripts without
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7522:
SQL lexer allows '#' comments and optionally '\' quoting inside strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7525:
Mssql lexer improved.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7528:
AutoIt3 lexer updated.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7531:
Perl lexer recognises regular expression use better.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7534:
Errorlist lexer understands Lua tracebacks and copes with findstr
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7612:
SciTE can load lexers implemented in external shared libraries.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7625:
MSSQL lexer adds keyword list for operators and stored procedures,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7722:
Rare hanging crash fixed in Python lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7766:
Perl lexer disambiguates '/' better.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7769:
NSIS lexer improved with a lexical class for numbers, option for ignoring case
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7773:
PowerBasic lexer improved with styles for constants and assembler and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7840:
On GTK+, the lexers are now included in the scintilla.a library file. This
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7847:
VB lexer gains an unterminated string state and 4 sets of keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7850:
Ruby lexer handles $' correctly.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :7986:
Hanging bug fixed in Perl lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8008:
Improved lexer for TeX, new lexer for Metapost and other support for these
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8018:
YAML lexer improved to include error styling.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8021:
Perl lexer improved to correctly handle more cases.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8024:
Assembler lexer updated to support single-quote strings and fix some
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8054:
SQL lexer treats single quote strings as a separate class to double quote strings..
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8131:
Lua lexer handles non-ASCII characters correctly.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8134:
Error lexer understands Borland errors with pathnames that contain space.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8197:
New lexer for POV-Ray Scene Description Language
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8208:
SQL lexer allows double quoted strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8211:
Pascal lexer: character constants that start with '#' understood,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8218:
Lua lexer allows '.' in keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8222:
CSS lexer handles multiple psuedoclasses.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8275:
External lexers supported on GTK+/Linux.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8276:
External lexers must now be explicitly loaded with SCI_LOADLEXERLIBRARY
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8305:
C++ lexer allows an extra set of keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8358:
Error message lexer tightened to yield fewer false matches.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8414:
CSS lexer improved.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8443:
Crash fixed in error message lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8584:
CSS (Cascading Style Sheets) lexer added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8587:
diff lexer understands some more formats.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8593:
Avenue lexer supports multiple keyword lists.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8621:
Minor fixes to Fortran lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8663:
Crash fixed in makefile lexer when first character on line was '='.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8694:
FORTRAN and assembler lexers added along with other support for these
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8698:
Ada lexer improved handling of based numbers, identifier validity and attributes
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8702:
Lua lexer handles block comments and a deep level of nesting for literal strings
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8706:
Errorlist lexer recognises PHP error messages.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8709:
Variant of the C++ lexer with case insensitive keywords
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8785:
Improved Pascal lexer with context sensitive keywords
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8791:
C++ lexer correctly handles comments on preprocessor lines.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :8964:
type with the autocomplete.&lt;lexer&gt;.fillups property.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9021:
Set of lexers compiled into Scintilla can now be changed by adding and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9022:
removing lexer source files from scintilla/src and running LexGen.py.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9047:
Scintilla.iface includes feature types for enumerations and lexers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9050:
Lua lexer improves handling of literal strings and copes with nested literal strings.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9053:
Diff lexer changed to treat lines starting with "***" similarly to "---".
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9057:
nncrontab lexer improved.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9142:
Support, including a new lexer, added for Matlab programs.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9146:
Lua lexer styles floating point numbers in number style instead of
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9153:
Python lexer improved to handle floating point numbers that contain negative
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9197:
The way that lexers loop over text was changed to avoid accessing beyond the
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9202:
Bug fixed in HTML lexer's handling of SGML.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9246:
Lua lexer no longer treats '.' as a word character and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9310:
Calltips in SciTE use the calltip.&lt;lexer&gt;.word.characters setting to
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9319:
SciTE option calltip.&lt;lexer&gt;.end.definition to display help text on a
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9404:
Baan lexer added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9407:
In C++ lexer, document comment keywords no longer have to be at the start
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9411:
PHP lexer changed to match keywords case insensitively.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9518:
Enhanced Visual Basic lexer handles character date and octal literals,
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9519:
and bracketed keywords for VB.NET. There are two VB lexers, vb and vbscript
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9595:
SGML support in the HTML/XML lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9602:
StyleContext class helps construct lexers that are simple and accurate.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9603:
Used in the C++, Eiffel, and Python lexers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9617:
New lexer and other support for crontab files used with the nncron scheduler.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9630:
C++ lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9634:
C++ lexer can understand Doxygen keywords in doc comments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9730:
C++ lexer handles keywords before '.' like "this.x" in Java as keywords.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9735:
Ruby lexer handles multi-line comments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9741:
PHP lexer has an operator style, handles "&lt;?" and "?&gt;" inside strings
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9745:
TCL lexer which is just an alias for the C++ lexer so does not really
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9749:
Error lines lexer has styles for Lua error messages and .NET stack traces.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9752:
Makefile lexer has a target style.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9755:
Lua lexer handles some [[]] string literals.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9758:
HTML and XML lexer have a SCE_H_SGML state for tags that
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9847:
Loadable lexer plugins on Windows.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9850:
Ruby lexer and support.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9853:
Lisp lexer and support.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9856:
Eiffel lexer and support.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9903:
Bug fixed in HTML lexer handling % before &gt; as end ASP
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9953:
Lexer infrastructure improved to allow for plug in lexers and for referring
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9954:
to lexers by name rather than by ID.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :9957:
Ada lexer and support added.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10046:
Bug fixed in C++ lexer when deleting a '{' controlling a folded range
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10050:
Bug fixed in Batch lexer where comments were not recognised.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10103:
HTML lexer allows folding HTML.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10106:
New lexer for Avenue files which are used in the ESRI ArcView GIS.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10109:
DOS Batch file lexer has states for '@', external commands, variables and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10113:
C++ lexer can fold comments of /* .. */ form.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10139:
Documentation added for lexers and for the extension and director interfaces.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10204:
Many fixes to the Perl lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10207:
Pascal lexer handles comments more correctly.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10210:
C/C++/Java/JavaScipt lexer has a state for line doc comments.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10213:
Error output lexer understands Sun CC messages.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10216:
Make file lexer has variable, preprocessor, and operator states.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10266:
Fixed problem in SciTE where choosing a specific lexer then meant
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10267:
that no lexer was chosen when files opened.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10284:
Fixed handling multiple line tags, non-inline scripts, and XML end tags /&gt; in HTML/XML lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10298:
Pascal lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10312:
Fixes to quoting and here documents in the Perl lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10381:
Apache CONF file lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10384:
Changes to Python lexer to allow 'as' as a context sensitive keyword and the
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10430:
Bug fixed with escapes in PHP strings in the HTML lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10477:
Many minor fixes to all of the lexers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10480:
New lexer for diff and patch files.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10483:
Error message lexer understands Perl error messages.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10486:
C/C++/Java lexer now supports C#, specifically verbatim strings and
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10705:
In the C++ lexer, lexing of preprocessor source may either treat it all as being in
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10725:
Menu to choose which lexer to use on a file.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10810:
LaTeX lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10833:
Added lexing of IDL based on C++ lexer with extra UUID lexical class.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10886:
Set of lexers included is determined at link time by defining which of the Lex* object files
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10890:
On Windows, the SciLexer.DLL extends Scintilla.DLL with the standard lexers.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10893:
Enhanced HTML lexer styles embedded VBScript and Python.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10959:
Python lexer detects and highlights inconsistent indentation.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10969:
SQL lexer and styles included.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :10972:
Perl lexer handles regular expressions better.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :11025:
Java and JavaScript lexers merged into C++ lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :11028:
C++ lexer indicates unterminated strings by colouring the end of the line
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :11050:
XML and Perl subset lexers in SciTE.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :11124:
SciTE has a global "*" lexer style that is used as the basis for all the lexers' styles.
azawawi/perl6-gtk-scintilla
…/ScintillaHistory.html :11400:
The Java, C++ and Python lexers recognise operators as distinct from default allowing them
azawawi/perl6-gtk-scintilla
…/ScintillaRelated.html :155:
Lua using LPeg to handle the lexers.
azawawi/perl6-gtk-scintilla
…/ScintillaToDo.html :58:
combining lexers.
azawawi/perl6-gtk-scintilla
…/ScintillaToDo.html :71:
More lexers for other languages.
azawawi/perl6-gtk-scintilla
…/deps.mak :188:
LexA68k.o: ../lexers/LexA68k.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :193:
LexAbaqus.o: ../lexers/LexAbaqus.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :198:
LexAda.o: ../lexers/LexAda.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :203:
LexAPDL.o: ../lexers/LexAPDL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :208:
LexAsm.o: ../lexers/LexAsm.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :212:
LexAsn1.o: ../lexers/LexAsn1.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :217:
LexASY.o: ../lexers/LexASY.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :222:
LexAU3.o: ../lexers/LexAU3.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :227:
LexAVE.o: ../lexers/LexAVE.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :232:
LexAVS.o: ../lexers/LexAVS.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :237:
LexBaan.o: ../lexers/LexBaan.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :241:
LexBash.o: ../lexers/LexBash.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :246:
LexBasic.o: ../lexers/LexBasic.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :250:
LexBatch.o: ../lexers/LexBatch.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :255:
LexBibTeX.o: ../lexers/LexBibTeX.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :260:
LexBullant.o: ../lexers/LexBullant.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :265:
LexCaml.o: ../lexers/LexCaml.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :270:
LexCLW.o: ../lexers/LexCLW.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :275:
LexCmake.o: ../lexers/LexCmake.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :280:
LexCOBOL.o: ../lexers/LexCOBOL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :285:
LexCoffeeScript.o: ../lexers/LexCoffeeScript.cxx ../include/Platform.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :290:
LexConf.o: ../lexers/LexConf.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :295:
LexCPP.o: ../lexers/LexCPP.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :301:
LexCrontab.o: ../lexers/LexCrontab.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :306:
LexCsound.o: ../lexers/LexCsound.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :311:
LexCSS.o: ../lexers/LexCSS.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :316:
LexD.o: ../lexers/LexD.cxx ../include/ILexer.h ../include/Sci_Position.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :320:
LexDiff.o: ../lexers/LexDiff.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :325:
LexDMAP.o: ../lexers/LexDMAP.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :330:
LexDMIS.o: ../lexers/LexDMIS.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :334:
LexECL.o: ../lexers/LexECL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :339:
LexEDIFACT.o: ../lexers/LexEDIFACT.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :342:
LexEiffel.o: ../lexers/LexEiffel.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :347:
LexErlang.o: ../lexers/LexErlang.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :352:
LexErrorList.o: ../lexers/LexErrorList.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :357:
LexEScript.o: ../lexers/LexEScript.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :362:
LexFlagship.o: ../lexers/LexFlagship.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :367:
LexForth.o: ../lexers/LexForth.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :372:
LexFortran.o: ../lexers/LexFortran.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :377:
LexGAP.o: ../lexers/LexGAP.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :382:
LexGui4Cli.o: ../lexers/LexGui4Cli.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :387:
LexHaskell.o: ../lexers/LexHaskell.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :393:
LexHex.o: ../lexers/LexHex.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :398:
LexHTML.o: ../lexers/LexHTML.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :403:
LexInno.o: ../lexers/LexInno.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :408:
LexJSON.o: ../lexers/LexJSON.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :412:
LexKix.o: ../lexers/LexKix.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :417:
LexKVIrc.o: ../lexers/LexKVIrc.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :422:
LexLaTeX.o: ../lexers/LexLaTeX.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :427:
LexLisp.o: ../lexers/LexLisp.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :432:
LexLout.o: ../lexers/LexLout.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :437:
LexLua.o: ../lexers/LexLua.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :442:
LexMagik.o: ../lexers/LexMagik.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :447:
LexMake.o: ../lexers/LexMake.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :452:
LexMarkdown.o: ../lexers/LexMarkdown.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :457:
LexMatlab.o: ../lexers/LexMatlab.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :462:
LexMetapost.o: ../lexers/LexMetapost.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :467:
LexMMIXAL.o: ../lexers/LexMMIXAL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :472:
LexModula.o: ../lexers/LexModula.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :477:
LexMPT.o: ../lexers/LexMPT.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :482:
LexMSSQL.o: ../lexers/LexMSSQL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :487:
LexMySQL.o: ../lexers/LexMySQL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :492:
LexNimrod.o: ../lexers/LexNimrod.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :497:
LexNsis.o: ../lexers/LexNsis.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :502:
LexNull.o: ../lexers/LexNull.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :507:
LexOpal.o: ../lexers/LexOpal.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :512:
LexOScript.o: ../lexers/LexOScript.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :517:
LexPascal.o: ../lexers/LexPascal.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :522:
LexPB.o: ../lexers/LexPB.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :527:
LexPerl.o: ../lexers/LexPerl.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :531:
LexPLM.o: ../lexers/LexPLM.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :536:
LexPO.o: ../lexers/LexPO.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :541:
LexPOV.o: ../lexers/LexPOV.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :546:
LexPowerPro.o: ../lexers/LexPowerPro.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :551:
LexPowerShell.o: ../lexers/LexPowerShell.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :556:
LexProgress.o: ../lexers/LexProgress.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :561:
LexProps.o: ../lexers/LexProps.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :566:
LexPS.o: ../lexers/LexPS.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :571:
LexPython.o: ../lexers/LexPython.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :576:
LexR.o: ../lexers/LexR.cxx ../include/ILexer.h ../include/Sci_Position.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :580:
LexRebol.o: ../lexers/LexRebol.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :585:
LexRegistry.o: ../lexers/LexRegistry.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :589:
LexRuby.o: ../lexers/LexRuby.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :594:
LexRust.o: ../lexers/LexRust.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :599:
LexScriptol.o: ../lexers/LexScriptol.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :604:
LexSmalltalk.o: ../lexers/LexSmalltalk.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :609:
LexSML.o: ../lexers/LexSML.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :614:
LexSorcus.o: ../lexers/LexSorcus.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :619:
LexSpecman.o: ../lexers/LexSpecman.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :624:
LexSpice.o: ../lexers/LexSpice.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :629:
LexSQL.o: ../lexers/LexSQL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :634:
LexSTTXT.o: ../lexers/LexSTTXT.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :639:
LexTACL.o: ../lexers/LexTACL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :644:
LexTADS3.o: ../lexers/LexTADS3.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :649:
LexTAL.o: ../lexers/LexTAL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :654:
LexTCL.o: ../lexers/LexTCL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :659:
LexTCMD.o: ../lexers/LexTCMD.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :664:
LexTeX.o: ../lexers/LexTeX.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :669:
LexTxt2tags.o: ../lexers/LexTxt2tags.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :674:
LexVB.o: ../lexers/LexVB.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :679:
LexVerilog.o: ../lexers/LexVerilog.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :684:
LexVHDL.o: ../lexers/LexVHDL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :689:
LexVisualProlog.o: ../lexers/LexVisualProlog.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :695:
LexYAML.o: ../lexers/LexYAML.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/makefile :53:
vpath %.cxx $(srcdir) $(srcdir)/../src $(srcdir)/../lexlib $(srcdir)/../lexers
azawawi/perl6-gtk-scintilla
…/makefile :99:
LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard $(srcdir)/../lexers/Lex*.cxx))))
azawawi/perl6-gtk-scintilla
…/makefile :107:
clang --analyze $(CONFIGFLAGS) $(CXXTFLAGS) $(CXXFLAGS) $(srcdir)/*.cxx $(srcdir)/../src/*.cxx $(srcdir)/../lexlib/*.cxx $(srcdir)/../lexers/*.cxx
azawawi/perl6-gtk-scintilla
…/makefile :109:
# To minimize deltas, including between Unix and Windows, the lexer file names are sorted case-insensitively
azawawi/perl6-gtk-scintilla
…/makefile :110:
LEXSORTED=$(shell ls $(srcdir)/../lexers/Lex*.cxx | sort -f)
azawawi/perl6-gtk-scintilla
…/ILexer.h :3:
** Interface between Scintilla and lexers.
azawawi/perl6-gtk-scintilla
…/SciLexer.h :3:
** Interface to the added lexer functions in the SciLexer version of the edit control.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :21:
## lex -> associate a lexer with the lexical classes it produces
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :43:
## lex has the syntax lex<ws><name>=<lexerVal><ws><prefix>[<ws><prefix>]*
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :45:
## lexerVal is the val used to specify the lexer, and the list of prefixes is similar
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :46:
## to enu. The name may not be the same as that used within the lexer so the lexerVal
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :707:
# bits (default: 3). If a lexer requires more than 32 lexical states, then this
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2472:
# Indicate that the internal state of a lexer has changed over a range and therefore
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2561:
# Set the line end types that the application wants to use. May not be used if incompatible with lexer or encoding.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2567:
# Get the line end types currently recognised. May be a subset of the allowed types due to lexer limitation.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2587:
set void SetLexer=4001(int lexer,)
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2595:
# Set up a value that may be used by a lexer for some optional feature.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2601:
# Set up the key words used by the lexer.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2607:
# Load a lexer library (dll / so).
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2623:
# Retrieve the number of bits the current lexer needs for styling.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2626:
# Retrieve the name of the lexer.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2631:
# For private communication between an application and a known lexer.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2634:
# Retrieve a '\n' separated list of properties understood by the current lexer.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2650:
# Retrieve a '\n' separated list of descriptions of the keyword sets understood by the current lexer.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2655:
# LF, CR, and CRLF are supported by the lexer.
azawawi/perl6-gtk-scintilla
…/Scintilla.iface :2895:
# When a lexer specifies its language as SCLEX_AUTOMATIC it receives a
azawawi/perl6-gtk-scintilla
…/LexAPDL.cxx :3:
** Lexer for APDL. Based on the lexer for Assembler by The Black Horus.
azawawi/perl6-gtk-scintilla
…/LexAPDL.cxx :134:
// - Included code folding for Ansys APDL lexer
azawawi/perl6-gtk-scintilla
…/LexAbaqus.cxx :3:
** Lexer for ABAQUS. Based on the lexer for APDL by Hadar Raz.
azawawi/perl6-gtk-scintilla
…/LexAsm.cxx :7:
** Converted to lexer object and added further folding features/properties by "Udo Lechner" <dlchnr(at)gmx(dot)net>
azawawi/perl6-gtk-scintilla
…/LexAsm.cxx :111:
DefineProperty("lexer.asm.comment.delimiter", &OptionsAsm::delimiter,
azawawi/perl6-gtk-scintilla
…/LexAsm.cxx :123:
"This option enables folding explicit fold points when using the Asm lexer. "
azawawi/perl6-gtk-scintilla
…/LexBaan.cxx :105:
DefineProperty("lexer.baan.styling.within.preprocessor", &OptionsBaan::baanStylingWithinPreprocessor,
azawawi/perl6-gtk-scintilla
…/LexBasic.cxx :4:
** Converted to lexer object and added further folding features/properties by "Udo Lechner" <dlchnr(at)gmx(dot)net>
azawawi/perl6-gtk-scintilla
…/LexBasic.cxx :11:
// lexers for more code clearity.
azawawi/perl6-gtk-scintilla
…/LexBasic.cxx :17:
// You may want to have a look at my ctags lexer as well, if you additionally to coloring
azawawi/perl6-gtk-scintilla
…/LexBasic.cxx :210:
"This option enables folding explicit fold points when using the Basic lexer. "
azawawi/perl6-gtk-scintilla
…/LexBullant.cxx :2:
// LexBullant.cxx - lexer for Bullant
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :368:
DefineProperty("lexer.cpp.allow.dollars", &OptionsCPP::identifiersAllowDollars,
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :369:
"Set to 0 to disallow the '$' character in identifiers with the cpp lexer.");
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :371:
DefineProperty("lexer.cpp.track.preprocessor", &OptionsCPP::trackPreprocessor,
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :374:
DefineProperty("lexer.cpp.update.preprocessor", &OptionsCPP::updatePreprocessor,
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :377:
DefineProperty("lexer.cpp.verbatim.strings.allow.escapes", &OptionsCPP::verbatimStringsAllowEscapes,
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :380:
DefineProperty("lexer.cpp.triplequoted.strings", &OptionsCPP::triplequotedStrings,
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :383:
DefineProperty("lexer.cpp.hashquoted.strings", &OptionsCPP::hashquotedStrings,
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :386:
DefineProperty("lexer.cpp.backquoted.strings", &OptionsCPP::backQuotedStrings,
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :389:
DefineProperty("lexer.cpp.escape.sequence", &OptionsCPP::escapeSequence,
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :398:
"This option enables folding multi-line comments and explicit fold points when using the C++ lexer. "
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :421:
"This option enables folding preprocessor directives when using the C++ lexer. "
azawawi/perl6-gtk-scintilla
…/LexCPP.cxx :565:
if (strcmp(key, "lexer.cpp.allow.dollars") == 0) {
azawawi/perl6-gtk-scintilla
…/LexCSS.cxx :97:
// property lexer.css.scss.language
azawawi/perl6-gtk-scintilla
…/LexCSS.cxx :99:
bool isScssDocument = styler.GetPropertyInt("lexer.css.scss.language") != 0;
azawawi/perl6-gtk-scintilla
…/LexCSS.cxx :101:
// property lexer.css.less.language
azawawi/perl6-gtk-scintilla
…/LexCSS.cxx :103:
bool isLessDocument = styler.GetPropertyInt("lexer.css.less.language") != 0;
azawawi/perl6-gtk-scintilla
…/LexCSS.cxx :105:
// property lexer.css.hss.language
azawawi/perl6-gtk-scintilla
…/LexCSS.cxx :107:
bool isHssDocument = styler.GetPropertyInt("lexer.css.hss.language") != 0;
azawawi/perl6-gtk-scintilla
…/LexCaml.cxx :112:
void EXT_LEXER_DECL Fold(unsigned int lexer, Sci_PositionU startPos, Sci_Position length,
azawawi/perl6-gtk-scintilla
…/LexCaml.cxx :116:
lexer;
azawawi/perl6-gtk-scintilla
…/LexCaml.cxx :124:
return 1; // just us [Objective] Caml lexers here!
azawawi/perl6-gtk-scintilla
…/LexCaml.cxx :131:
// return as much of our lexer name as will fit (what's up with Index?)
azawawi/perl6-gtk-scintilla
…/LexCaml.cxx :141:
void EXT_LEXER_DECL Lex(unsigned int lexer, Sci_PositionU startPos, Sci_Position length,
azawawi/perl6-gtk-scintilla
…/LexCaml.cxx :145:
lexer;
azawawi/perl6-gtk-scintilla
…/LexCaml.cxx :167:
// call our "internal" folder/lexer (... then do Flush!)
azawawi/perl6-gtk-scintilla
…/LexCaml.cxx :197:
const int useMagic = styler.GetPropertyInt("lexer.caml.magic", 0);
azawawi/perl6-gtk-scintilla
…/LexCmake.cxx :6:
// based on the NSIS lexer
azawawi/perl6-gtk-scintilla
…/LexCoffeeScript.cxx :43:
// Store the current lexer state and brace count prior to starting a new
azawawi/perl6-gtk-scintilla
…/LexCoffeeScript.cxx :58:
// Restore the lexer state and brace count for the previous `#{}` interpolation
azawawi/perl6-gtk-scintilla
…/LexCoffeeScript.cxx :60:
// Note the previous lexer state is the return value and needs to be restored
azawawi/perl6-gtk-scintilla
…/LexConf.cxx :6:
** i created this lexer because i needed something pretty when dealing
azawawi/perl6-gtk-scintilla
…/LexD.cxx :5:
** Converted to lexer object and added further folding features/properties by "Udo Lechner" <dlchnr(at)gmx(dot)net>
azawawi/perl6-gtk-scintilla
…/LexD.cxx :139:
DefineProperty("lexer.d.fold.at.else", &OptionsD::foldAtElseInt,
azawawi/perl6-gtk-scintilla
…/LexDMAP.cxx :4:
** Written by Mark Robinson, based on the Fortran lexer by Chuan-jian Shen, Last changed Aug. 2013
azawawi/perl6-gtk-scintilla
…/LexErlang.cxx :8:
** based on Matlab lexer by Jos􏿽xE9 Fonseca.
azawawi/perl6-gtk-scintilla
…/LexErrorList.cxx :364:
// property lexer.errorlist.value.separate
azawawi/perl6-gtk-scintilla
…/LexErrorList.cxx :369:
bool valueSeparate = styler.GetPropertyInt("lexer.errorlist.value.separate", 0) != 0;
azawawi/perl6-gtk-scintilla
…/LexErrorList.cxx :371:
// property lexer.errorlist.escape.sequences
azawawi/perl6-gtk-scintilla
…/LexErrorList.cxx :373:
const bool escapeSequences = styler.GetPropertyInt("lexer.errorlist.escape.sequences") != 0;
azawawi/perl6-gtk-scintilla
…/LexFlagship.cxx :50:
// property lexer.flagship.styling.within.preprocessor
azawawi/perl6-gtk-scintilla
…/LexFlagship.cxx :53:
bool stylingWithinPreprocessor = styler.GetPropertyInt("lexer.flagship.styling.within.preprocessor", 1) != 0;
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :681:
// property lexer.xml.allow.scripts
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :683:
const bool allowScripts = styler.GetPropertyInt("lexer.xml.allow.scripts", 1) != 0;
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :685:
// property lexer.html.mako
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :687:
const bool isMako = styler.GetPropertyInt("lexer.html.mako", 0) != 0;
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :689:
// property lexer.html.django
azawawi/perl6-gtk-scintilla
…/LexHTML.cxx :691:
const bool isDjango = styler.GetPropertyInt("lexer.html.django", 0) != 0;
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :4:
* A haskell lexer for the scintilla code control.
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :6:
* External lexer stuff inspired from the caml external lexer.
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :230:
DefineProperty("lexer.haskell.allow.hash", &OptionsHaskell::magicHash,
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :232:
"literals with the haskell lexer "
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :235:
DefineProperty("lexer.haskell.allow.quotes", &OptionsHaskell::allowQuotes,
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :240:
DefineProperty("lexer.haskell.allow.questionmark", &OptionsHaskell::implicitParams,
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :242:
"with the haskell lexer "
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :245:
DefineProperty("lexer.haskell.import.safe", &OptionsHaskell::highlightSafe,
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :249:
DefineProperty("lexer.haskell.cpp", &OptionsHaskell::cpp,
azawawi/perl6-gtk-scintilla
…/LexHaskell.cxx :507:
// For lexer to work, states should unconditionally forward at least one
azawawi/perl6-gtk-scintilla
…/LexHex.cxx :88:
* General notes for all lexers
azawawi/perl6-gtk-scintilla
…/LexHex.cxx :100:
* record, the line is too long then. This state is used in all lexers.
azawawi/perl6-gtk-scintilla
…/LexJSON.cxx :119:
DefineProperty("lexer.json.escape.sequence", &OptionsJSON::escapeSequence,
azawawi/perl6-gtk-scintilla
…/LexJSON.cxx :122:
DefineProperty("lexer.json.allow.comments", &OptionsJSON::allowComments,
azawawi/perl6-gtk-scintilla
…/LexMagik.cxx :82:
* The lexer function
azawawi/perl6-gtk-scintilla
…/LexMarkdown.cxx :4:
* A simple Markdown lexer for scintilla.
azawawi/perl6-gtk-scintilla
…/LexMarkdown.cxx :28:
* the lexer.
azawawi/perl6-gtk-scintilla
…/LexMetapost.cxx :12:
// This lexer is derived from the one written for the texwork environment (1999++) which in
azawawi/perl6-gtk-scintilla
…/LexMetapost.cxx :61:
// lexer.tex.comment.process=0
azawawi/perl6-gtk-scintilla
…/LexMetapost.cxx :130:
// some day we can make something lexer.metapost.mapping=(none,0)(metapost,1)(mp,1)(metafun,2)...
azawawi/perl6-gtk-scintilla
…/LexMetapost.cxx :166:
bool processComment = styler.GetPropertyInt("lexer.metapost.comment.process", 0) == 1 ;
azawawi/perl6-gtk-scintilla
…/LexMetapost.cxx :167:
int defaultInterface = styler.GetPropertyInt("lexer.metapost.interface.default", 1) ;
azawawi/perl6-gtk-scintilla
…/LexNimrod.cxx :2:
// Nimrod lexer
azawawi/perl6-gtk-scintilla
…/LexOScript.cxx :87:
// Functions classifying a token currently processed in the lexer.
azawawi/perl6-gtk-scintilla
…/LexOScript.cxx :536:
// Declaration of the OScript lexer descriptor.
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :13:
// Necessary changes for the PB lexer in Scintilla project:
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :16:
// #define SCLEX_POWERBASIC 51 //ID for PowerBasic lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :18:
// #define SCE_B_DEFAULT 0 //in both VB and PB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :19:
// #define SCE_B_COMMENT 1 //in both VB and PB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :20:
// #define SCE_B_NUMBER 2 //in both VB and PB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :21:
// #define SCE_B_KEYWORD 3 //in both VB and PB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :22:
// #define SCE_B_STRING 4 //in both VB and PB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :23:
// #define SCE_B_PREPROCESSOR 5 //VB lexer only, not in PB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :24:
// #define SCE_B_OPERATOR 6 //in both VB and PB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :25:
// #define SCE_B_IDENTIFIER 7 //in both VB and PB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :26:
// #define SCE_B_DATE 8 //VB lexer only, not in PB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :27:
// #define SCE_B_CONSTANT 13 //PB lexer only, not in VB lexer
azawawi/perl6-gtk-scintilla
…/LexPB.cxx :28:
// #define SCE_B_ASM 14 //PB lexer only, not in VB lexer
azawawi/perl6-gtk-scintilla
…/LexPOV.cxx :9:
// Some points that distinguish from a simple C lexer:
azawawi/perl6-gtk-scintilla
…/LexPS.cxx :9:
// Previous releases of this lexer included support for marking token starts with
azawawi/perl6-gtk-scintilla
…/LexPascal.cxx :19:
If you enable "lexer.pascal.smart.highlighting" property, some keywords will
azawawi/perl6-gtk-scintilla
…/LexPascal.cxx :219:
bool bSmartHighlighting = styler.GetPropertyInt("lexer.pascal.smart.highlighting", 1) != 0;
azawawi/perl6-gtk-scintilla
…/LexPerl.cxx :4:
** Converted to lexer object by "Udo Lechner" <dlchnr(at)gmx(dot)net>
azawawi/perl6-gtk-scintilla
…/LexPerl.cxx :353:
// Enable folding Pod blocks when using the Perl lexer.
azawawi/perl6-gtk-scintilla
…/LexPerl.cxx :355:
// Enable folding packages when using the Perl lexer.
azawawi/perl6-gtk-scintilla
…/LexPerl.cxx :386:
"Set to 0 to disable folding Pod blocks when using the Perl lexer.");
azawawi/perl6-gtk-scintilla
…/LexPerl.cxx :389:
"Set to 0 to disable folding packages when using the Perl lexer.");
azawawi/perl6-gtk-scintilla
…/LexPowerPro.cxx :4:
// PowerPro lexer is written by Christopher Bean (cbean@cb-software.net)
azawawi/perl6-gtk-scintilla
…/LexProgress.cxx :11:
SpeedScript support in html lexer
azawawi/perl6-gtk-scintilla
…/LexProgress.cxx :112:
"This option enables folding multi-line comments and explicit fold points when using the ABL lexer. ");
azawawi/perl6-gtk-scintilla
…/LexProps.cxx :90:
// property lexer.props.allow.initial.spaces
azawawi/perl6-gtk-scintilla
…/LexProps.cxx :94:
bool allowInitialSpaces = styler.GetPropertyInt("lexer.props.allow.initial.spaces", 1) != 0;
azawawi/perl6-gtk-scintilla
…/LexPython.cxx :241:
DefineProperty("lexer.python.literals.binary", &OptionsPython::base2or8Literals,
azawawi/perl6-gtk-scintilla
…/LexPython.cxx :244:
DefineProperty("lexer.python.strings.u", &OptionsPython::stringsU,
azawawi/perl6-gtk-scintilla
…/LexPython.cxx :247:
DefineProperty("lexer.python.strings.b", &OptionsPython::stringsB,
azawawi/perl6-gtk-scintilla
…/LexPython.cxx :250:
DefineProperty("lexer.python.strings.f", &OptionsPython::stringsF,
azawawi/perl6-gtk-scintilla
…/LexPython.cxx :253:
DefineProperty("lexer.python.strings.over.newline", &OptionsPython::stringsOverNewline,
azawawi/perl6-gtk-scintilla
…/LexPython.cxx :256:
DefineProperty("lexer.python.keywords2.no.sub.identifiers", &OptionsPython::keywords2NoSubIdentifiers,
azawawi/perl6-gtk-scintilla
…/LexPython.cxx :263:
"This option enables folding multi-line quoted strings when using the Python lexer.");
azawawi/perl6-gtk-scintilla
…/LexPython.cxx :267:
DefineProperty("lexer.python.unicode.identifiers", &OptionsPython::unicodeIdentifiers,
azawawi/perl6-gtk-scintilla
…/LexRuby.cxx :464:
// is ambiguous. The Ruby lexer/parser resolves it by
azawawi/perl6-gtk-scintilla
…/LexRuby.cxx :467:
// If it's a var, it's an operator. This lexer doesn't
azawawi/perl6-gtk-scintilla
…/LexRuby.cxx :774:
// list. Keep in mind this code will be called every time the lexer
azawawi/perl6-gtk-scintilla
…/LexRuby.cxx :895:
// based on Ruby's lexer/parser in the
azawawi/perl6-gtk-scintilla
…/LexRust.cxx :5:
** Converted to lexer object and added further folding features/properties by "Udo Lechner" <dlchnr(at)gmx(dot)net>
azawawi/perl6-gtk-scintilla
…/LexRust.cxx :112:
DefineProperty("lexer.rust.fold.at.else", &OptionsRust::foldAtElseInt,
azawawi/perl6-gtk-scintilla
…/LexRust.cxx :267:
/* See if there's an integer suffix. We mimic the Rust's lexer
azawawi/perl6-gtk-scintilla
…/LexSML.cxx :54:
const int useMagic = styler.GetPropertyInt("lexer.caml.magic", 0);
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :289:
DefineProperty("lexer.sql.backticks.identifier", &OptionsSQL::sqlBackticksIdentifier);
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :291:
DefineProperty("lexer.sql.numbersign.comment", &OptionsSQL::sqlNumbersignComment,
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :292:
"If \"lexer.sql.numbersign.comment\" property is set to 0 a line beginning with '#' will not be a comment.");
azawawi/perl6-gtk-scintilla
…/LexSQL.cxx :297:
DefineProperty("lexer.sql.allow.dotted.word", &OptionsSQL::sqlAllowDottedWord,
azawawi/perl6-gtk-scintilla
…/LexSpecman.cxx :4:
** Written by Avi Yegudin, based on C++ lexer by Neil Hodgson
azawawi/perl6-gtk-scintilla
…/LexTCMD.cxx :6:
// based on the CMD lexer
azawawi/perl6-gtk-scintilla
…/LexTeX.cxx :10:
// This lexer is derived from the one written for the texwork environment (1999++) which in
azawawi/perl6-gtk-scintilla
…/LexTeX.cxx :65:
// lexer.tex.interface.default=0
azawawi/perl6-gtk-scintilla
…/LexTeX.cxx :66:
// lexer.tex.comment.process=0
azawawi/perl6-gtk-scintilla
…/LexTeX.cxx :68:
// todo: lexer.tex.auto.if
azawawi/perl6-gtk-scintilla
…/LexTeX.cxx :133:
// some day we can make something lexer.tex.mapping=(all,0)(nl,1)(en,2)...
azawawi/perl6-gtk-scintilla
…/LexTeX.cxx :182:
bool processComment = styler.GetPropertyInt("lexer.tex.comment.process", 0) == 1 ;
azawawi/perl6-gtk-scintilla
…/LexTeX.cxx :183:
bool useKeywords = styler.GetPropertyInt("lexer.tex.use.keywords", 1) == 1 ;
azawawi/perl6-gtk-scintilla
…/LexTeX.cxx :184:
bool autoIf = styler.GetPropertyInt("lexer.tex.auto.if", 1) == 1 ;
azawawi/perl6-gtk-scintilla
…/LexTeX.cxx :185:
int defaultInterface = styler.GetPropertyInt("lexer.tex.interface.default", 1) ;
azawawi/perl6-gtk-scintilla
…/LexTxt2tags.cxx :4:
* A simple Txt2tags lexer for scintilla.
azawawi/perl6-gtk-scintilla
…/LexVHDL.cxx :8:
** - The C++ lexer by Neil Hodgson
azawawi/perl6-gtk-scintilla
…/LexVHDL.cxx :215:
// Decided it would be smarter to have the lexer have all keywords included. Therefore I
azawawi/perl6-gtk-scintilla
…/LexVerilog.cxx :4:
** Written by Avi Yegudin, based on C++ lexer by Neil Hodgson
azawawi/perl6-gtk-scintilla
…/LexVerilog.cxx :149:
"This option enables folding multi-line comments when using the Verilog lexer.");
azawawi/perl6-gtk-scintilla
…/LexVerilog.cxx :151:
"This option enables folding preprocessor directives when using the Verilog lexer.");
azawawi/perl6-gtk-scintilla
…/LexVerilog.cxx :158:
DefineProperty("lexer.verilog.track.preprocessor", &OptionsVerilog::trackPreprocessor,
azawawi/perl6-gtk-scintilla
…/LexVerilog.cxx :160:
DefineProperty("lexer.verilog.update.preprocessor", &OptionsVerilog::updatePreprocessor,
azawawi/perl6-gtk-scintilla
…/LexVerilog.cxx :162:
DefineProperty("lexer.verilog.portstyling", &OptionsVerilog::portStyling,
azawawi/perl6-gtk-scintilla
…/LexVerilog.cxx :164:
DefineProperty("lexer.verilog.allupperkeywords", &OptionsVerilog::allUppercaseDocKeyword,
azawawi/perl6-gtk-scintilla
…/LexVerilog.cxx :166:
DefineProperty("lexer.verilog.fold.preprocessor.else", &OptionsVerilog::foldPreprocessorElse,
azawawi/perl6-gtk-scintilla
…/Accessor.cxx :3:
** Interfaces between Scintilla and lexers.
azawawi/perl6-gtk-scintilla
…/Accessor.h :3:
** Interfaces between Scintilla and lexers.
azawawi/perl6-gtk-scintilla
…/LexAccessor.h :3:
** Interfaces between Scintilla and lexers.
azawawi/perl6-gtk-scintilla
…/LexerBase.cxx :3:
** A simple lexer with no state.
azawawi/perl6-gtk-scintilla
…/LexerBase.h :3:
** A simple lexer with no state.
azawawi/perl6-gtk-scintilla
…/LexerBase.h :15:
// A simple lexer with no state
azawawi/perl6-gtk-scintilla
…/LexerModule.h :73:
// Turn off shadow warnings for lexers as may be maintained by others
azawawi/perl6-gtk-scintilla
…/LexerNoExceptions.cxx :3:
** A simple lexer with no state which does not throw exceptions so can be used in an external lexer.
azawawi/perl6-gtk-scintilla
…/LexerNoExceptions.h :3:
** A simple lexer with no state.
azawawi/perl6-gtk-scintilla
…/LexerNoExceptions.h :15:
// A simple lexer with no state
azawawi/perl6-gtk-scintilla
…/LexerSimple.cxx :3:
** A simple lexer with no state.
azawawi/perl6-gtk-scintilla
…/LexerSimple.h :3:
** A simple lexer with no state.
azawawi/perl6-gtk-scintilla
…/LexerSimple.h :15:
// A simple lexer with no state
azawawi/perl6-gtk-scintilla
…/OptionSet.h :3:
** Manage descriptive information about an options struct for a lexer.
azawawi/perl6-gtk-scintilla
…/SparseState.h :3:
** Hold lexer state that may change rarely.
azawawi/perl6-gtk-scintilla
…/SubStyles.h :3:
** Manage substyles for a lexer.
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.cpp :83:
owner->emit_lexer_changed();
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.cpp :298:
void ScintillaDocument::emit_lexer_changed() {
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.cpp :299:
emit lexer_changed();
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.h :89:
void emit_lexer_changed();
azawawi/perl6-gtk-scintilla
…/ScintillaDocument.h :98:
void lexer_changed();
azawawi/perl6-gtk-scintilla
…/ScintillaEdit.pro :69:
../../lexers/*.cxx
azawawi/perl6-gtk-scintilla
…/ScintillaEditBase.pro :67:
../../lexers/*.cxx
azawawi/perl6-gtk-scintilla
…/ScintillaEditPy.pro :109:
../../lexers/*.cxx
azawawi/perl6-gtk-scintilla
…/testsepq.py :96:
someText = self.edit.lexerLanguage()
azawawi/perl6-gtk-scintilla
…/HeaderCheck.py :34:
# Find all the lexer source code files
azawawi/perl6-gtk-scintilla
…/HeaderCheck.py :39:
filePaths += glob.glob(root + "/lexers/*.cxx")
azawawi/perl6-gtk-scintilla
…/LexGen.py :5:
# Regenerate the Scintilla source files that list all the lexers.
azawawi/perl6-gtk-scintilla
…/LexGen.py :6:
# Should be run whenever a new lexer is added or removed.
azawawi/perl6-gtk-scintilla
…/LexGen.py :58:
11F35FDA12AEFAF100F0236D /* LexA68k.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexA68k.cxx; path = ../../lexers/LexA68k.cxx; sourceTree = SOURCE_ROOT; };
azawawi/perl6-gtk-scintilla
…/LexGen.py :62:
def RegenerateXcodeProject(path, lexers, lexerReferences):
azawawi/perl6-gtk-scintilla
…/LexGen.py :78:
for lexer in lexers:
azawawi/perl6-gtk-scintilla
…/LexGen.py :79:
if lexer not in lexerReferences:
azawawi/perl6-gtk-scintilla
…/LexGen.py :82:
print("Lexer", lexer, "is not in Xcode project. Use IDs", uid1, uid2)
azawawi/perl6-gtk-scintilla
…/LexGen.py :83:
lexerReferences[lexer] = [uid1, uid2]
azawawi/perl6-gtk-scintilla
…/LexGen.py :84:
linePBXBuildFile = "\t\t{} /* {}.cxx in Sources */ = {{isa = PBXBuildFile; fileRef = {} /* {}.cxx */; }};".format(uid1, lexer, uid2, lexer)
azawawi/perl6-gtk-scintilla
…/LexGen.py :85:
linePBXFileReference = "\t\t{} /* {}.cxx */ = {{isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = {}.cxx; path = ../../lexers/{}.cxx; sourceTree = SOURCE_ROOT; }};".format(uid2, lexer, lexer, lexer)
azawawi/perl6-gtk-scintilla
…/LexGen.py :86:
lineLexers = "\t\t\t\t{} /* {}.cxx */,".format(uid2, lexer)
azawawi/perl6-gtk-scintilla
…/LexGen.py :87:
linePBXSourcesBuildPhase = "\t\t\t\t{} /* {}.cxx in Sources */,".format(uid1, lexer)
azawawi/perl6-gtk-scintilla
…/LexGen.py :115:
Regenerate(root + "src/Catalogue.cxx", "//", sci.lexerModules)
azawawi/perl6-gtk-scintilla
…/LexGen.py :119:
sci.lexFiles, sci.lexersXcode)
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :18:
# Information about lexers and properties defined in lexers
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :20:
# sorted list of lexer files
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :21:
# lexerModules
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :23:
# lexerProperties
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :24:
# sorted list of lexer properties
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :74:
lexers = {}
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :76:
for lexerLine in lines[FileGenerator.FindSectionInList(lines, markersLexers)]:
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :78:
uid, _, rest = lexerLine.partition("/* ")
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :80:
lexer, _, _ = rest.partition(".")
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :81:
lexers[lexer] = uidsOfBuild[lexer]
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :83:
return lexers
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :85:
# Properties that start with lexer. or fold. are automatically found but there are some
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :112:
propertyName.startswith("lexer."):
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :220:
# Find all the lexer source code files
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :221:
lexFilePaths = glob.glob(scintillaRoot + "lexers/Lex*.cxx")
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :224:
self.lexerModules = []
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :225:
lexerProperties = set()
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :234:
self.lexerModules.append(module[0])
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :236:
lexerProperties.add(k)
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :241:
SortListInsensitive(self.lexerModules)
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :242:
self.lexerProperties = list(lexerProperties)
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :243:
SortListInsensitive(self.lexerProperties)
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :245:
self.lexersXcode = FindLexersInXcode(scintillaRoot + "cocoa/ScintillaFramework/ScintillaFramework.xcodeproj/project.pbxproj")
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :256:
printWrapped(str(len(sci.lexFiles)) + " lexer files: " + ", ".join(sci.lexFiles))
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :257:
printWrapped(str(len(sci.lexerModules)) + " lexer modules: " + ", ".join(sci.lexerModules))
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :258:
#~ printWrapped(str(len(sci.lexersXcode)) + " Xcode lexer references: " + ", ".join(
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :259:
#~ [lex+":"+uids[0]+","+uids[1] for lex, uids in sci.lexersXcode.items()]))
azawawi/perl6-gtk-scintilla
…/ScintillaData.py :266:
printWrapped("Lexer properties: " + ", ".join(sci.lexerProperties))
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :29:
static std::vector<LexerModule *> lexerCatalogue;
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :34:
for (std::vector<LexerModule *>::iterator it=lexerCatalogue.begin();
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :35:
it != lexerCatalogue.end(); ++it) {
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :46:
for (std::vector<LexerModule *>::iterator it=lexerCatalogue.begin();
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :47:
it != lexerCatalogue.end(); ++it) {
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :61:
lexerCatalogue.push_back(plm);
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :64:
// To add or remove a lexer, add or remove its file and run LexGen.py.
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :66:
// Force a reference to all of the Scintilla lexers so that the linker will
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :67:
// not remove the code of the lexers.
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :75:
// Shorten the code that declares a lexer and ensures it is linked in by calling a method.
azawawi/perl6-gtk-scintilla
…/Catalogue.cxx :76:
#define LINK_LEXER(lexer) extern LexerModule lexer; Catalogue::AddLexerModule(&lexer);
azawawi/perl6-gtk-scintilla
…/Document.cxx :2117:
// Tell the watchers the lexer has changed.
azawawi/perl6-gtk-scintilla
…/ExternalLexer.cxx :3:
** Support external lexers in DLLs.
azawawi/perl6-gtk-scintilla
…/ExternalLexer.cxx :73:
// Assign a buffer for the lexer name.
azawawi/perl6-gtk-scintilla
…/ExternalLexer.cxx :91:
// The external lexer needs to know how to call into its DLL to
azawawi/perl6-gtk-scintilla
…/ExternalLexer.h :3:
** Support external lexers in DLLs.
azawawi/perl6-gtk-scintilla
…/ExternalLexer.h :26:
/// Sub-class of LexerModule to use an external lexer.
azawawi/perl6-gtk-scintilla
…/ExternalLexer.h :63:
/// LexerManager manages external lexers, contains LexerLibrarys.
azawawi/perl6-gtk-scintilla
…/perl-test-5220delta.pl :166:
0x41.65.65 # hex dot number, but lexer now fails with 0x41.65 left as a partial hex float
azawawi/perl6-gtk-scintilla
…/perl-test-5220delta.pl.styled :166:
{4}0x41.65{10}.{4}65{0} {2}# hex dot number, but lexer now fails with 0x41.65 left as a partial hex float{0}
azawawi/perl6-gtk-scintilla
…/perl-test-sub-prototypes.pl :80:
# - whitespace now allowed, lexer now allows spaces or tabs
azawawi/perl6-gtk-scintilla
…/perl-test-sub-prototypes.pl.styled :80:
{2}# - whitespace now allowed, lexer now allows spaces or tabs{0}
azawawi/perl6-gtk-scintilla
…/lexTests.py :73:
def LexExample(self, name, lexerName, keywords, fileMode="b"):
azawawi/perl6-gtk-scintilla
…/lexTests.py :77:
self.ed.LexerLanguage = lexerName
azawawi/perl6-gtk-scintilla
…/lexTests.py :136:
def LexLongCase(self, name, lexerName, keywords, fileMode="b"):
azawawi/perl6-gtk-scintilla
…/lexTests.py :137:
self.LexExample(name, lexerName, keywords, "t")
azawawi/perl6-gtk-scintilla
…/simpleTests.py :1293:
# Reset by changing lexer
azawawi/perl6-gtk-scintilla
…/simpleTests.py :1800:
# The cpp lexer has a boolean property named lexer.cpp.allow.dollars
azawawi/perl6-gtk-scintilla
…/simpleTests.py :1801:
propNameDollars = b"lexer.cpp.allow.dollars"
azawawi/perl6-gtk-scintilla
…/simpleTests.py :1812:
''' These tests include knowledge of the current implementation in the cpp lexer
azawawi/perl6-gtk-scintilla
…/SciLexer.vcxproj :111:
<ClCompile Include="..\lexers\*.cxx" />
azawawi/perl6-gtk-scintilla
…/deps.mak :170:
LexA68k.o: ../lexers/LexA68k.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :175:
LexAbaqus.o: ../lexers/LexAbaqus.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :180:
LexAda.o: ../lexers/LexAda.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :185:
LexAPDL.o: ../lexers/LexAPDL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :190:
LexAsm.o: ../lexers/LexAsm.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :194:
LexAsn1.o: ../lexers/LexAsn1.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :199:
LexASY.o: ../lexers/LexASY.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :204:
LexAU3.o: ../lexers/LexAU3.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :209:
LexAVE.o: ../lexers/LexAVE.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :214:
LexAVS.o: ../lexers/LexAVS.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :219:
LexBaan.o: ../lexers/LexBaan.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :223:
LexBash.o: ../lexers/LexBash.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :228:
LexBasic.o: ../lexers/LexBasic.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :232:
LexBatch.o: ../lexers/LexBatch.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :237:
LexBibTeX.o: ../lexers/LexBibTeX.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :242:
LexBullant.o: ../lexers/LexBullant.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :247:
LexCaml.o: ../lexers/LexCaml.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :252:
LexCLW.o: ../lexers/LexCLW.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :257:
LexCmake.o: ../lexers/LexCmake.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :262:
LexCOBOL.o: ../lexers/LexCOBOL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :267:
LexCoffeeScript.o: ../lexers/LexCoffeeScript.cxx ../include/Platform.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :272:
LexConf.o: ../lexers/LexConf.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :277:
LexCPP.o: ../lexers/LexCPP.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :283:
LexCrontab.o: ../lexers/LexCrontab.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :288:
LexCsound.o: ../lexers/LexCsound.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :293:
LexCSS.o: ../lexers/LexCSS.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :298:
LexD.o: ../lexers/LexD.cxx ../include/ILexer.h ../include/Sci_Position.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :302:
LexDiff.o: ../lexers/LexDiff.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :307:
LexDMAP.o: ../lexers/LexDMAP.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :312:
LexDMIS.o: ../lexers/LexDMIS.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :316:
LexECL.o: ../lexers/LexECL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :321:
LexEDIFACT.o: ../lexers/LexEDIFACT.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :324:
LexEiffel.o: ../lexers/LexEiffel.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :329:
LexErlang.o: ../lexers/LexErlang.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :334:
LexErrorList.o: ../lexers/LexErrorList.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :339:
LexEScript.o: ../lexers/LexEScript.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :344:
LexFlagship.o: ../lexers/LexFlagship.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :349:
LexForth.o: ../lexers/LexForth.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :354:
LexFortran.o: ../lexers/LexFortran.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :359:
LexGAP.o: ../lexers/LexGAP.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :364:
LexGui4Cli.o: ../lexers/LexGui4Cli.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :369:
LexHaskell.o: ../lexers/LexHaskell.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :375:
LexHex.o: ../lexers/LexHex.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :380:
LexHTML.o: ../lexers/LexHTML.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :385:
LexInno.o: ../lexers/LexInno.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :390:
LexJSON.o: ../lexers/LexJSON.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :394:
LexKix.o: ../lexers/LexKix.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :399:
LexKVIrc.o: ../lexers/LexKVIrc.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :404:
LexLaTeX.o: ../lexers/LexLaTeX.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :409:
LexLisp.o: ../lexers/LexLisp.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :414:
LexLout.o: ../lexers/LexLout.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :419:
LexLua.o: ../lexers/LexLua.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :424:
LexMagik.o: ../lexers/LexMagik.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :429:
LexMake.o: ../lexers/LexMake.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :434:
LexMarkdown.o: ../lexers/LexMarkdown.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :439:
LexMatlab.o: ../lexers/LexMatlab.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :444:
LexMetapost.o: ../lexers/LexMetapost.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :449:
LexMMIXAL.o: ../lexers/LexMMIXAL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :454:
LexModula.o: ../lexers/LexModula.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :459:
LexMPT.o: ../lexers/LexMPT.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :464:
LexMSSQL.o: ../lexers/LexMSSQL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :469:
LexMySQL.o: ../lexers/LexMySQL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :474:
LexNimrod.o: ../lexers/LexNimrod.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :479:
LexNsis.o: ../lexers/LexNsis.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :484:
LexNull.o: ../lexers/LexNull.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :489:
LexOpal.o: ../lexers/LexOpal.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :494:
LexOScript.o: ../lexers/LexOScript.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :499:
LexPascal.o: ../lexers/LexPascal.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :504:
LexPB.o: ../lexers/LexPB.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :509:
LexPerl.o: ../lexers/LexPerl.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :513:
LexPLM.o: ../lexers/LexPLM.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :518:
LexPO.o: ../lexers/LexPO.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :523:
LexPOV.o: ../lexers/LexPOV.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :528:
LexPowerPro.o: ../lexers/LexPowerPro.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :533:
LexPowerShell.o: ../lexers/LexPowerShell.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :538:
LexProgress.o: ../lexers/LexProgress.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :543:
LexProps.o: ../lexers/LexProps.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :548:
LexPS.o: ../lexers/LexPS.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :553:
LexPython.o: ../lexers/LexPython.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :558:
LexR.o: ../lexers/LexR.cxx ../include/ILexer.h ../include/Sci_Position.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :562:
LexRebol.o: ../lexers/LexRebol.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :567:
LexRegistry.o: ../lexers/LexRegistry.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :571:
LexRuby.o: ../lexers/LexRuby.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :576:
LexRust.o: ../lexers/LexRust.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :581:
LexScriptol.o: ../lexers/LexScriptol.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :586:
LexSmalltalk.o: ../lexers/LexSmalltalk.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :591:
LexSML.o: ../lexers/LexSML.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :596:
LexSorcus.o: ../lexers/LexSorcus.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :601:
LexSpecman.o: ../lexers/LexSpecman.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :606:
LexSpice.o: ../lexers/LexSpice.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :611:
LexSQL.o: ../lexers/LexSQL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :616:
LexSTTXT.o: ../lexers/LexSTTXT.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :621:
LexTACL.o: ../lexers/LexTACL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :626:
LexTADS3.o: ../lexers/LexTADS3.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :631:
LexTAL.o: ../lexers/LexTAL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :636:
LexTCL.o: ../lexers/LexTCL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :641:
LexTCMD.o: ../lexers/LexTCMD.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :646:
LexTeX.o: ../lexers/LexTeX.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :651:
LexTxt2tags.o: ../lexers/LexTxt2tags.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :656:
LexVB.o: ../lexers/LexVB.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :661:
LexVerilog.o: ../lexers/LexVerilog.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :666:
LexVHDL.o: ../lexers/LexVHDL.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :671:
LexVisualProlog.o: ../lexers/LexVisualProlog.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/deps.mak :677:
LexYAML.o: ../lexers/LexYAML.cxx ../include/ILexer.h \
azawawi/perl6-gtk-scintilla
…/makefile :33:
vpath %.cxx ../src ../lexlib ../lexers
azawawi/perl6-gtk-scintilla
…/makefile :68:
$(CXX) --analyze $(D2DFLAGS) $(CXXFLAGS) *.cxx ../src/*.cxx ../lexlib/*.cxx ../lexers/*.cxx
azawawi/perl6-gtk-scintilla
…/makefile :71:
$(CXX) -MM $(CXXFLAGS) *.cxx ../src/*.cxx ../lexlib/*.cxx ../lexers/*.cxx >deps.mak
azawawi/perl6-gtk-scintilla
…/makefile :73:
LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard ../lexers/Lex*.cxx))))
azawawi/perl6-gtk-scintilla
…/scintilla.mak :247:
{..\lexers}.cxx{$(DIR_O)}.obj::
azawawi/perl6-gtk-scintilla
…/scintilla.mak :264:
# All lexers depend on this set of headers
azawawi/perl6-gtk-scintilla
…/scintilla.mak :499:
#**\n\($(DIR_O)\\\*.obj: ..\\lexers\\\*.cxx $(LEX_HEADERS)\n\n\)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :501:
$(DIR_O)\LexA68k.obj: ..\lexers\LexA68k.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :503:
$(DIR_O)\LexAbaqus.obj: ..\lexers\LexAbaqus.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :505:
$(DIR_O)\LexAda.obj: ..\lexers\LexAda.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :507:
$(DIR_O)\LexAPDL.obj: ..\lexers\LexAPDL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :509:
$(DIR_O)\LexAsm.obj: ..\lexers\LexAsm.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :511:
$(DIR_O)\LexAsn1.obj: ..\lexers\LexAsn1.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :513:
$(DIR_O)\LexASY.obj: ..\lexers\LexASY.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :515:
$(DIR_O)\LexAU3.obj: ..\lexers\LexAU3.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :517:
$(DIR_O)\LexAVE.obj: ..\lexers\LexAVE.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :519:
$(DIR_O)\LexAVS.obj: ..\lexers\LexAVS.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :521:
$(DIR_O)\LexBaan.obj: ..\lexers\LexBaan.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :523:
$(DIR_O)\LexBash.obj: ..\lexers\LexBash.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :525:
$(DIR_O)\LexBasic.obj: ..\lexers\LexBasic.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :527:
$(DIR_O)\LexBatch.obj: ..\lexers\LexBatch.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :529:
$(DIR_O)\LexBibTeX.obj: ..\lexers\LexBibTeX.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :531:
$(DIR_O)\LexBullant.obj: ..\lexers\LexBullant.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :533:
$(DIR_O)\LexCaml.obj: ..\lexers\LexCaml.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :535:
$(DIR_O)\LexCLW.obj: ..\lexers\LexCLW.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :537:
$(DIR_O)\LexCmake.obj: ..\lexers\LexCmake.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :539:
$(DIR_O)\LexCOBOL.obj: ..\lexers\LexCOBOL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :541:
$(DIR_O)\LexCoffeeScript.obj: ..\lexers\LexCoffeeScript.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :543:
$(DIR_O)\LexConf.obj: ..\lexers\LexConf.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :545:
$(DIR_O)\LexCPP.obj: ..\lexers\LexCPP.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :547:
$(DIR_O)\LexCrontab.obj: ..\lexers\LexCrontab.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :549:
$(DIR_O)\LexCsound.obj: ..\lexers\LexCsound.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :551:
$(DIR_O)\LexCSS.obj: ..\lexers\LexCSS.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :553:
$(DIR_O)\LexD.obj: ..\lexers\LexD.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :555:
$(DIR_O)\LexDiff.obj: ..\lexers\LexDiff.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :557:
$(DIR_O)\LexDMAP.obj: ..\lexers\LexDMAP.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :559:
$(DIR_O)\LexDMIS.obj: ..\lexers\LexDMIS.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :561:
$(DIR_O)\LexECL.obj: ..\lexers\LexECL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :563:
$(DIR_O)\LexEDIFACT.obj: ..\lexers\LexEDIFACT.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :565:
$(DIR_O)\LexEiffel.obj: ..\lexers\LexEiffel.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :567:
$(DIR_O)\LexErlang.obj: ..\lexers\LexErlang.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :569:
$(DIR_O)\LexErrorList.obj: ..\lexers\LexErrorList.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :571:
$(DIR_O)\LexEScript.obj: ..\lexers\LexEScript.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :573:
$(DIR_O)\LexFlagship.obj: ..\lexers\LexFlagship.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :575:
$(DIR_O)\LexForth.obj: ..\lexers\LexForth.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :577:
$(DIR_O)\LexFortran.obj: ..\lexers\LexFortran.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :579:
$(DIR_O)\LexGAP.obj: ..\lexers\LexGAP.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :581:
$(DIR_O)\LexGui4Cli.obj: ..\lexers\LexGui4Cli.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :583:
$(DIR_O)\LexHaskell.obj: ..\lexers\LexHaskell.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :585:
$(DIR_O)\LexHex.obj: ..\lexers\LexHex.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :587:
$(DIR_O)\LexHTML.obj: ..\lexers\LexHTML.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :589:
$(DIR_O)\LexInno.obj: ..\lexers\LexInno.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :591:
$(DIR_O)\LexJSON.obj: ..\lexers\LexJSON.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :593:
$(DIR_O)\LexKix.obj: ..\lexers\LexKix.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :595:
$(DIR_O)\LexKVIrc.obj: ..\lexers\LexKVIrc.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :597:
$(DIR_O)\LexLaTeX.obj: ..\lexers\LexLaTeX.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :599:
$(DIR_O)\LexLisp.obj: ..\lexers\LexLisp.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :601:
$(DIR_O)\LexLout.obj: ..\lexers\LexLout.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :603:
$(DIR_O)\LexLua.obj: ..\lexers\LexLua.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :605:
$(DIR_O)\LexMagik.obj: ..\lexers\LexMagik.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :607:
$(DIR_O)\LexMake.obj: ..\lexers\LexMake.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :609:
$(DIR_O)\LexMarkdown.obj: ..\lexers\LexMarkdown.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :611:
$(DIR_O)\LexMatlab.obj: ..\lexers\LexMatlab.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :613:
$(DIR_O)\LexMetapost.obj: ..\lexers\LexMetapost.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :615:
$(DIR_O)\LexMMIXAL.obj: ..\lexers\LexMMIXAL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :617:
$(DIR_O)\LexModula.obj: ..\lexers\LexModula.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :619:
$(DIR_O)\LexMPT.obj: ..\lexers\LexMPT.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :621:
$(DIR_O)\LexMSSQL.obj: ..\lexers\LexMSSQL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :623:
$(DIR_O)\LexMySQL.obj: ..\lexers\LexMySQL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :625:
$(DIR_O)\LexNimrod.obj: ..\lexers\LexNimrod.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :627:
$(DIR_O)\LexNsis.obj: ..\lexers\LexNsis.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :629:
$(DIR_O)\LexNull.obj: ..\lexers\LexNull.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :631:
$(DIR_O)\LexOpal.obj: ..\lexers\LexOpal.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :633:
$(DIR_O)\LexOScript.obj: ..\lexers\LexOScript.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :635:
$(DIR_O)\LexPascal.obj: ..\lexers\LexPascal.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :637:
$(DIR_O)\LexPB.obj: ..\lexers\LexPB.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :639:
$(DIR_O)\LexPerl.obj: ..\lexers\LexPerl.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :641:
$(DIR_O)\LexPLM.obj: ..\lexers\LexPLM.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :643:
$(DIR_O)\LexPO.obj: ..\lexers\LexPO.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :645:
$(DIR_O)\LexPOV.obj: ..\lexers\LexPOV.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :647:
$(DIR_O)\LexPowerPro.obj: ..\lexers\LexPowerPro.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :649:
$(DIR_O)\LexPowerShell.obj: ..\lexers\LexPowerShell.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :651:
$(DIR_O)\LexProgress.obj: ..\lexers\LexProgress.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :653:
$(DIR_O)\LexProps.obj: ..\lexers\LexProps.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :655:
$(DIR_O)\LexPS.obj: ..\lexers\LexPS.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :657:
$(DIR_O)\LexPython.obj: ..\lexers\LexPython.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :659:
$(DIR_O)\LexR.obj: ..\lexers\LexR.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :661:
$(DIR_O)\LexRebol.obj: ..\lexers\LexRebol.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :663:
$(DIR_O)\LexRegistry.obj: ..\lexers\LexRegistry.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :665:
$(DIR_O)\LexRuby.obj: ..\lexers\LexRuby.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :667:
$(DIR_O)\LexRust.obj: ..\lexers\LexRust.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :669:
$(DIR_O)\LexScriptol.obj: ..\lexers\LexScriptol.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :671:
$(DIR_O)\LexSmalltalk.obj: ..\lexers\LexSmalltalk.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :673:
$(DIR_O)\LexSML.obj: ..\lexers\LexSML.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :675:
$(DIR_O)\LexSorcus.obj: ..\lexers\LexSorcus.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :677:
$(DIR_O)\LexSpecman.obj: ..\lexers\LexSpecman.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :679:
$(DIR_O)\LexSpice.obj: ..\lexers\LexSpice.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :681:
$(DIR_O)\LexSQL.obj: ..\lexers\LexSQL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :683:
$(DIR_O)\LexSTTXT.obj: ..\lexers\LexSTTXT.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :685:
$(DIR_O)\LexTACL.obj: ..\lexers\LexTACL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :687:
$(DIR_O)\LexTADS3.obj: ..\lexers\LexTADS3.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :689:
$(DIR_O)\LexTAL.obj: ..\lexers\LexTAL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :691:
$(DIR_O)\LexTCL.obj: ..\lexers\LexTCL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :693:
$(DIR_O)\LexTCMD.obj: ..\lexers\LexTCMD.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :695:
$(DIR_O)\LexTeX.obj: ..\lexers\LexTeX.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :697:
$(DIR_O)\LexTxt2tags.obj: ..\lexers\LexTxt2tags.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :699:
$(DIR_O)\LexVB.obj: ..\lexers\LexVB.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :701:
$(DIR_O)\LexVerilog.obj: ..\lexers\LexVerilog.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :703:
$(DIR_O)\LexVHDL.obj: ..\lexers\LexVHDL.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :705:
$(DIR_O)\LexVisualProlog.obj: ..\lexers\LexVisualProlog.cxx $(LEX_HEADERS)
azawawi/perl6-gtk-scintilla
…/scintilla.mak :707:
$(DIR_O)\LexYAML.obj: ..\lexers\LexYAML.cxx $(LEX_HEADERS)
drforr/perl6-ANTLR4
…/ANTLRv4Lexer.g4 :32:
lexer grammar ANTLRv4Lexer;
drforr/perl6-ANTLR4
…/ANTLRv4Lexer.g4 :87:
_currentRuleType = _type; // set to inside lexer or parser rule
drforr/perl6-ANTLR4
…/ANTLRv4Lexer.g4 :130:
LEXER : 'lexer' ;
drforr/perl6-ANTLR4
…/ANTLRv4Lexer.g4 :276:
// lexer specification. It matches a single character of any value and being
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :110:
: MODE id SEMI lexerRule*
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :119:
| lexerRule
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :172:
// is an internal indication for lexer rules that they do not match
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :173:
// from the input but are like subroutines for other lexer rules to
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :196:
lexerRule
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :198:
TOKEN_REF COLON lexerRuleBlock SEMI
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :201:
lexerRuleBlock
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :202:
: lexerAltList
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :205:
lexerAltList
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :206:
: lexerAlt (OR lexerAlt)*
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :209:
lexerAlt
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :210:
: lexerElements lexerCommands?
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :214:
lexerElements
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :215:
: lexerElement+
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :218:
lexerElement
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :220:
| lexerAtom ebnfSuffix?
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :221:
| lexerBlock ebnfSuffix?
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :228:
( lexerAtom
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :233:
lexerBlock
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :234:
: LPAREN lexerAltList RPAREN
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :238:
lexerCommands
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :239:
: RARROW lexerCommand (COMMA lexerCommand)*
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :242:
lexerCommand
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :243:
: lexerCommandName LPAREN lexerCommandExpr RPAREN
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :244:
| lexerCommandName
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :247:
lexerCommandName
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :252:
lexerCommandExpr
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :298:
lexerAtom
drforr/perl6-ANTLR4
…/ANTLRv4Parser.g4 :308:
: range // Range x..y - only valid in lexers
drforr/perl6-ANTLR4
…/CSharp4Lexer.g4 :6:
lexer grammar CSharp4Lexer;
drforr/perl6-ANTLR4
…/CSharp4Lexer.g4 :289:
// Explanation: 0.Equals() would be parsed as an invalid real (1. branch) causing a lexer error
drforr/perl6-ANTLR4
…/CSharp4PreProcessor.g4 :10:
lexer grammar CSharp4PreProcessor;
drforr/perl6-ANTLR4
…/ECMAScript.g4 :87:
@lexer::members {
drforr/perl6-ANTLR4
…/ECMAScript.g4 :89:
// A flag indicating if the lexer should operate in strict mode.
drforr/perl6-ANTLR4
…/ECMAScript.g4 :98:
* Returns {@code true} iff the lexer operates in strict mode.
drforr/perl6-ANTLR4
…/ECMAScript.g4 :100:
* @return {@code true} iff the lexer operates in strict mode.
drforr/perl6-ANTLR4
…/ECMAScript.g4 :107:
* Sets whether the lexer operates in strict mode or not.
drforr/perl6-ANTLR4
…/ECMAScript.g4 :110:
* the flag indicating the lexer operates in strict mode or not.
drforr/perl6-ANTLR4
…/ECMAScript.g4 :119:
* is used to determine when the lexer could possibly match a regex
drforr/perl6-ANTLR4
…/ECMAScript.g4 :139:
* Returns {@code true} iff the lexer can match a regex literal.
drforr/perl6-ANTLR4
…/ECMAScript.g4 :141:
* @return {@code true} iff the lexer can match a regex literal.
drforr/perl6-ANTLR4
…/HTMLLexer.g4 :29:
lexer grammar HTMLLexer;
drforr/perl6-ANTLR4
…/ICalendar.g4 :1574:
////////////////////////////// lexer rules //////////////////////////////
drforr/perl6-ANTLR4
…/Java8.g4 :52:
Total lexer+parser time 30844ms.
drforr/perl6-ANTLR4
…/LessLexer.g4 :7:
lexer grammar LessLexer;
drforr/perl6-ANTLR4
…/MySQLBase.g4 :1:
lexer grammar MySQLBase;
drforr/perl6-ANTLR4
…/PCRE.g4 :33:
// Most single line comments above the lexer- and parser rules
drforr/perl6-ANTLR4
…/PGN.g4 :266:
// previous lexer rules.
drforr/perl6-ANTLR4
…/Python3.g4 :38:
@lexer::members {
drforr/perl6-ANTLR4
…/Python3.g4 :40:
// A queue where extra tokens are pushed on (see the NEWLINE lexer rule).
drforr/perl6-ANTLR4
…/Python3.g4 :697:
* lexer rules
drforr/perl6-ANTLR4
…/ScssLexer.g4 :29:
lexer grammar ScssLexer;
drforr/perl6-ANTLR4
…/UCBLogo.g4 :473:
// Create a lexer and parser that will resolve user defined procedures.
drforr/perl6-ANTLR4
…/UCBLogo.g4 :474:
UCBLogoLexer lexer = new UCBLogoLexer(input);
drforr/perl6-ANTLR4
…/UCBLogo.g4 :475:
UCBLogoParser parser = new UCBLogoParser(new CommonTokenStream(lexer));
drforr/perl6-ANTLR4
…/UCBLogo.g4 :540:
@lexer::members {
drforr/perl6-ANTLR4
…/UCBLogo.g4 :542:
// Counters that keep track of how deep the lexer is currently in a list
drforr/perl6-ANTLR4
…/Verilog2001.g4 :601:
Use a lexer mode to handle table: switch to new mode upon table, switch
drforr/perl6-ANTLR4
…/VisualBasic6.g4 :662:
// lexer rules --------------------------------------------------------------------------------
drforr/perl6-ANTLR4
…/XMLLexer.g4 :29:
/** XML lexer derived from ANTLR v4 ref guide book example */
drforr/perl6-ANTLR4
…/XMLLexer.g4 :30:
lexer grammar XMLLexer;
drforr/perl6-ANTLR4
…/tnsnames.g4 :89:
// with a letter or a digit. (See the lexer ID rule below). They
drforr/perl6-ANTLR4
…/tnsnames.g4 :513:
// lexer rule. Compiling the grammar gives "rule reference D_QUOTE
drforr/perl6-ANTLR4
…/tnsnames.g4 :564:
// Other lexer rules, and fragments.
drforr/perl6-ANTLR4
…/Perl6.pm6 :162:
# lexer and parser grammars, and lexers can't have parser terms
drforr/perl6-ANTLR4
…/Perl6.pm6 :494:
method lexerAtom( $/ ) {
drforr/perl6-ANTLR4
…/Perl6.pm6 :501:
method lexerBlock( $/ ) {
drforr/perl6-ANTLR4
…/Perl6.pm6 :504:
for $/<lexerAltList><lexerAlt> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :505:
if $_.<lexerElement>[0]<lexerAtom><range> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :508:
~$_.<lexerElement>[0]<lexerAtom><range><from>[0],
drforr/perl6-ANTLR4
…/Perl6.pm6 :509:
~$_.<lexerElement>[0]<lexerAtom><range><to>[0]
drforr/perl6-ANTLR4
…/Perl6.pm6 :513:
elsif $_.<lexerElement>[0]<lexerAtom><LEXER_CHAR_SET> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :514:
for $_.<lexerElement>[0]<lexerAtom><LEXER_CHAR_SET>[0] {
drforr/perl6-ANTLR4
…/Perl6.pm6 :525:
$_.<lexerElement>[0]<lexerAtom><terminal><scalar>.ast
drforr/perl6-ANTLR4
…/Perl6.pm6 :536:
my @child = $/<lexerAltList>.ast;
drforr/perl6-ANTLR4
…/Perl6.pm6 :543:
method lexerElement( $/ ) {
drforr/perl6-ANTLR4
…/Perl6.pm6 :547:
if $/<lexerAtom><terminal><scalar> and
drforr/perl6-ANTLR4
…/Perl6.pm6 :548:
is-ANTLR-terminal( $/<lexerAtom><terminal><scalar> ) and
drforr/perl6-ANTLR4
…/Perl6.pm6 :549:
( !$/<lexerAtom><LEXER_CHAR_SET>[0][0]<LEXER_CHAR_SET_RANGE><LEXER_CHAR_SET_ELEMENT_NO_HYPHEN> ) {
drforr/perl6-ANTLR4
…/Perl6.pm6 :555:
$/<lexerAtom><terminal><scalar>.ast
drforr/perl6-ANTLR4
…/Perl6.pm6 :560:
elsif $/<lexerAtom><LEXER_CHAR_SET> and
drforr/perl6-ANTLR4
…/Perl6.pm6 :561:
$/<lexerAtom><LEXER_CHAR_SET>[0][0]<LEXER_CHAR_SET_RANGE><LEXER_CHAR_SET_ELEMENT_NO_HYPHEN> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :563:
~$/<lexerAtom><LEXER_CHAR_SET>[0][0]<LEXER_CHAR_SET_RANGE><LEXER_CHAR_SET_ELEMENT_NO_HYPHEN>,
drforr/perl6-ANTLR4
…/Perl6.pm6 :564:
~$/<lexerAtom><LEXER_CHAR_SET>[0][0]<LEXER_CHAR_SET_RANGE><LEXER_CHAR_SET_ELEMENT>
drforr/perl6-ANTLR4
…/Perl6.pm6 :572:
elsif $/<lexerAtom><LEXER_CHAR_SET> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :574:
for $/<lexerAtom><LEXER_CHAR_SET> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :586:
elsif $/<lexerAtom><notSet><setElement><terminal> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :588:
$/<lexerAtom><notSet><setElement><terminal><STRING_LITERAL>.ast
drforr/perl6-ANTLR4
…/Perl6.pm6 :598:
elsif $/<ebnfSuffix> and $/<lexerAtom><notSet><setElement> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :600:
for $/<lexerAtom><notSet><setElement><LEXER_CHAR_SET>[0] {
drforr/perl6-ANTLR4
…/Perl6.pm6 :615:
elsif $/<ebnfSuffix> and $/<lexerAtom><notSet> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :617:
for $/<lexerAtom><notSet><blockSet><setElementAltList><setElement> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :632:
$/<lexerAtom><terminal><scalar> and
drforr/perl6-ANTLR4
…/Perl6.pm6 :633:
!is-ANTLR-terminal( $/<lexerAtom><terminal><scalar> ) {
drforr/perl6-ANTLR4
…/Perl6.pm6 :639:
$/<lexerAtom><terminal><scalar>.ast
drforr/perl6-ANTLR4
…/Perl6.pm6 :644:
elsif $/<lexerBlock> {
drforr/perl6-ANTLR4
…/Perl6.pm6 :645:
make $/<lexerBlock>.ast
drforr/perl6-ANTLR4
…/Perl6.pm6 :647:
elsif $/<lexerAtom>[0] {
drforr/perl6-ANTLR4
…/Perl6.pm6 :676:
make $/<lexerAtom>.ast
drforr/perl6-ANTLR4
…/Perl6.pm6 :680:
method lexerAlt( $/ ) {
drforr/perl6-ANTLR4
…/Perl6.pm6 :681:
my @child = $/<lexerElement>>>.ast;
drforr/perl6-ANTLR4
…/Perl6.pm6 :694:
method lexerAltList( $/ ) {
drforr/perl6-ANTLR4
…/Perl6.pm6 :695:
my @child = $/<lexerAlt>>>.ast;
drforr/perl6-ANTLR4
…/Perl6.pm6 :709:
method lexerRuleSpec( $/ ) {
drforr/perl6-ANTLR4
…/Perl6.pm6 :710:
my @child = $/<lexerAltList>.ast;
drforr/perl6-ANTLR4
…/Perl6.pm6 :719:
$/<lexerRuleSpec>.ast
drforr/perl6-ANTLR4
…/Parser.pm6 :176:
<COMMENTS>? ( :!sigspace 'lexer' | 'parser' )?
drforr/perl6-ANTLR4
…/Parser.pm6 :263:
| 'lexer'
drforr/perl6-ANTLR4
…/Parser.pm6 :269:
<COMMENTS>? 'mode' <ID> ';' <lexerRuleSpec>*
drforr/perl6-ANTLR4
…/Parser.pm6 :274:
| <lexerRuleSpec>
drforr/perl6-ANTLR4
…/Parser.pm6 :323:
# is an internal indication for lexer rules that they do not match
drforr/perl6-ANTLR4
…/Parser.pm6 :324:
# from the input but are like subroutines for other lexer rules to
drforr/perl6-ANTLR4
…/Parser.pm6 :353:
rule lexerRuleSpec
drforr/perl6-ANTLR4
…/Parser.pm6 :358:
<COMMENTS>? <lexerAltList>
drforr/perl6-ANTLR4
…/Parser.pm6 :363:
rule lexerAltList
drforr/perl6-ANTLR4
…/Parser.pm6 :365:
<lexerAlt>+ %% '|'
drforr/perl6-ANTLR4
…/Parser.pm6 :368:
rule lexerAlt
drforr/perl6-ANTLR4
…/Parser.pm6 :370:
<COMMENTS>? <lexerElement>+ <lexerCommands>? <COMMENTS>? | ''
drforr/perl6-ANTLR4
…/Parser.pm6 :373:
rule lexerElement
drforr/perl6-ANTLR4
…/Parser.pm6 :375:
| <lexerAtom> <ebnfSuffix>?
drforr/perl6-ANTLR4
…/Parser.pm6 :376:
| <lexerBlock> <ebnfSuffix>?
drforr/perl6-ANTLR4
…/Parser.pm6 :383:
[ <lexerAtom>
drforr/perl6-ANTLR4
…/Parser.pm6 :390:
rule lexerBlock
drforr/perl6-ANTLR4
…/Parser.pm6 :392:
<complement>? '(' <COMMENTS>? <lexerAltList>? ')'
drforr/perl6-ANTLR4
…/Parser.pm6 :397:
rule lexerCommands
drforr/perl6-ANTLR4
…/Parser.pm6 :399:
'->' <lexerCommand>+ % ','
drforr/perl6-ANTLR4
…/Parser.pm6 :402:
rule lexerCommand
drforr/perl6-ANTLR4
…/Parser.pm6 :404:
<ID> <lexerCommandExpr>?
drforr/perl6-ANTLR4
…/Parser.pm6 :407:
rule lexerCommandExpr
drforr/perl6-ANTLR4
…/Parser.pm6 :458:
rule lexerAtom
drforr/perl6-ANTLR4
…/11-concatenation.t :50:
# using the lexerAlt stuff, which needs to be built out separately.
drforr/perl6-ANTLR4
…/14-grammar-modifiers.t :13:
is ANTLR4::Grammar.to-string( Q:to[END] ), Q:to[END], 'lexer grammar';
drforr/perl6-ANTLR4
…/14-grammar-modifiers.t :14:
lexer grammar Empty;
drforr/perl6-ANTLR4
…/14-grammar-modifiers.t :16:
#|{ "type" : "lexer" }
drforr/perl6-ANTLR4
…/17-modes.t :19:
lexer_stuff : ;
drforr/perl6-ANTLR4
…/17-modes.t :28:
token lexer_stuff {
gabrielash/p6-net-jupyter
…/Messages.pm :134:
# Pygments lexer, for highlighting. Only needed if it differs from the 'name' field.
gabrielash/p6-net-jupyter
…/Messages.pm :135:
'pygments_lexer': str,
p6-css/CSS-Grammar-p6
…/Grammar.pm :22:
# "lexer"
p6-css/CSS-Grammar-p6
…/CSS1.pm :55:
# 'lexer' css1 exceptions:
p6-css/CSS-Grammar-p6
…/CSS21.pm :97:
# 'lexer' css21 exceptions
p6-css/CSS-Grammar-p6
…/CSS3.pm :46:
# 'lexer' css3 exceptions
tony-o/perl6-html-parser-xml
…/S05.html :2466:
<p>(The <code>:dba</code> adverb may also be used to give names to alternations and alternatives, which helps the lexer give better error messages.)</p>
tony-o/perl6-html-parser-xml
…/S05.html :6814:
<p>Historically regex processing has proceeded in Perl via a backtracking NFA algorithm. This is quite powerful, but many parsers work more efficient…
tony-o/perl6-html-parser-xml
…/S05.html :6859:
<p>This longest token prefix corresponds roughly to the notion of &#34;token&#34; in other parsing systems that use a lexer, but in the cas…
tony-o/perl6-html-parser-xml
…/S05.html :6944:
<p>Because such assertions can be part of the token, the lexer engine must be able to recover from the failure of such an assertion and backtrack to the next best token candidate, which might be the same length or shorter, but can never be longer than the current candidate.</p>
zag/plosurin
…/t01.t :13:
my @lexer_tests =
zag/plosurin
…/t01.t :28:
for @lexer_tests -> $template, $check, $test_name {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment