-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0"?> | ||
<SyntaxDefinition name="Custom Highlighting" xmlns="http://icsharpcode.net/sharpdevelop/syntaxdefinition/2008"> | ||
<Color name="Comment" foreground="Green" /> | ||
<Color name="String" foreground="Blue" /> | ||
|
||
<!-- This is the main ruleset. --> | ||
<RuleSet> | ||
<Span color="Comment" begin="//" /> | ||
<Span color="Comment" multiline="true" begin="/\*" end="\*/" /> | ||
|
||
<Span color="String"> | ||
<Begin>"</Begin> | ||
<End>"</End> | ||
<RuleSet> | ||
<!-- nested span for escape sequences --> | ||
<Span begin="\\" end="." /> | ||
</RuleSet> | ||
</Span> | ||
|
||
<Keywords fontWeight="bold" foreground="Blue"> | ||
<Word>if</Word> | ||
<Word>else</Word> | ||
<Word>var</Word> | ||
</Keywords> | ||
|
||
<Keywords fontWeight="bold" fontStyle="italic" foreground="Red"> | ||
<Word>AvalonEdit</Word> | ||
</Keywords> | ||
|
||
<!-- Digits --> | ||
<Rule foreground="DarkBlue"> | ||
\b0[xX][0-9a-fA-F]+ # hex number | ||
| \b | ||
( \d+(\.[0-9]+)? #number with optional floating point | ||
| \.[0-9]+ #or just starting with floating point | ||
) | ||
([eE][+-]?[0-9]+)? # optional exponent | ||
</Rule> | ||
</RuleSet> | ||
</SyntaxDefinition> |