-
Notifications
You must be signed in to change notification settings - Fork 1
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
Sergiu Marton
committed
Jul 31, 2018
1 parent
4a8c86f
commit db7b25f
Showing
3 changed files
with
58 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,46 @@ | ||
<SyntaxDefinition name="C#" | ||
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>daca</Word> | ||
<Word>altfel</Word> | ||
<Word>atunci</Word> | ||
<Word>cat timp</Word> | ||
<Word>pentru</Word> | ||
<Word>executa</Word> | ||
<Word>sfarsit</Word> | ||
<Word>intreg</Word> | ||
<Word>real</Word> | ||
<Word>text</Word> | ||
<Word>scrie</Word> | ||
<Word>scrieln</Word> | ||
<Word>citeste</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> |