UltimateZoneBuilder/Source/Core/Resources/Lexers.cfg
MaxED b4b0b4cc33 Script Editor: added Visual Studio-like snippet expanding (type the name of a snippet, then press the Tab key to expand it).
Script Editor: added snippets to auto-complete list (currently they aren't inserted properly though...).
Script Editor: auto-indentation now works a bit smarter.
ScintillaControl.GetLine() was retrieving incorrect line.
2014-05-13 14:41:51 +00:00

96 lines
2.1 KiB
INI

// This configuration holds information we need for the Scintilla lexers in our script editor.
// This indicates which styles to configure for the syntax highlighting we want. It also maps our
// keywords and constants to the indices and styles for every lexer.
// -1 indicates it is an unused style or index.
// NOTE: The styles are mapped backwards with the scintilla style as key and our style as value.
// Styles that are not mapped will be set to the plain text style. For our styles see the
// ScriptStyleType enum. The indices for keywords and constants are mapped forwards (the value
// is the index for the Scintilla control).
lexer1 // None
{
0 = 0; // plain text
33 = 5; // line numbers
37 = 5; // ident guides
keywordsindex = -1;
constantsindex = -1;
}
lexer3 // CPP-style, case-sensitive
{
0 = 0; // plain text
33 = 5; // line numbers
1 = 3; // comments
2 = 3; // comments
5 = 1; // keywords
4 = 4; // literal
6 = 4; // literal
7 = 4; // literal
16 = 2; // constants
37 = 5; // ident guides
keywordsindex = 0;
constantsindex = 1;
snippetindex = 2;
}
lexer6 // Perl-style
{
0 = 0; // plain text
2 = 3; // comments
4 = 4; // literal
5 = 1; // keywords
6 = 4; // literal
7 = 4; // literal
33 = 5; // line numbers
37 = 5; // ident guides
keywordsindex = 0;
constantsindex = -1;
}
lexer18 // Pascal-style
{
0 = 0; // plain text
33 = 5; // line numbers
1 = 3; // comments
2 = 3; // comments
5 = 1; // keywords
4 = 4; // literal
6 = 4; // literal
7 = 4; // literal
16 = 2; // constants
37 = 5; // ident guides
keywordsindex = 0;
constantsindex = 1;
snippetindex = 2;
}
lexer35 // CPP-style, case-insensitive
{
0 = 0; // plain text
33 = 5; // line numbers
1 = 3; // comments
2 = 3; // comments
5 = 1; // keywords
4 = 4; // literal
6 = 4; // literal
7 = 4; // literal
16 = 2; // constants
37 = 5; // ident guides
keywordsindex = 0;
constantsindex = 1;
snippetindex = 2;
}