diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-01-29 01:12:11 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-01-29 01:12:11 +0200 |
| commit | 4b70130484df80f00f28b5295ca0143f9b19c34a (patch) | |
| tree | 8327a7a9f414f971adbb1cfbf8b567d086062842 /Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Highlighting | |
| parent | 2da056e2dea7e98413afc0552c40466358def759 (diff) | |
| download | Tango-4b70130484df80f00f28b5295ca0143f9b19c34a.tar.gz Tango-4b70130484df80f00f28b5295ca0143f9b19c34a.zip | |
Added support for #load keyword.
Diffstat (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Highlighting')
| -rw-r--r-- | Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Highlighting/Resources/CSharp-Mode.xshd | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Highlighting/Resources/CSharp-Mode.xshd b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Highlighting/Resources/CSharp-Mode.xshd index 40f362e08..409825b42 100644 --- a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Highlighting/Resources/CSharp-Mode.xshd +++ b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Highlighting/Resources/CSharp-Mode.xshd @@ -22,7 +22,7 @@ <Color name="OperatorKeywords" foreground="Pink" exampleText="public static implicit operator..."/> <Color name="ParameterModifiers" foreground="DeepPink" exampleText="(ref int a, params int[] b)"/> <Color name="Modifiers" foreground="#3F8FD6" exampleText="static readonly int a;"/> - <Color name="CustomKeywords" foreground="#FAFF00" /> + <Color name="CustomKeywords" foreground="DarkGray" /> <Color name="Visibility" foreground="#3F8FD6" exampleText="public override void ToString();"/> <Color name="NamespaceKeywords" foreground="#569CD6" exampleText="namespace A.B { using System; }"/> <Color name="GetSetAddRemove" foreground="#3F8FD6" exampleText="int Prop { get; set; }"/> @@ -47,26 +47,7 @@ <!-- This is the main ruleset. --> <RuleSet> - <Span color="Preprocessor"> - <Begin>\#</Begin> - <RuleSet name="PreprocessorSet"> - <Span> <!-- preprocessor directives that allows comments --> - <Begin > - (define|undef|if|elif|else|endif|line)\b - </Begin> - <RuleSet> - <Span color="Comment" ruleSet="CommentMarkerSet"> - <Begin>//</Begin> - </Span> - </RuleSet> - </Span> - <Span> <!-- preprocessor directives that don't allow comments --> - <Begin > - (region|endregion|error|warning|pragma)\b - </Begin> - </Span> - </RuleSet> - </Span> + <!--<Span color="Comment"> <Begin color="XmlDoc/DocComment">///</Begin> @@ -118,8 +99,7 @@ </Rule> <Keywords color="CustomKeywords"> - <Word>include</Word> - <Word>import</Word> + <Word>#load</Word> </Keywords> <Keywords color="ThisOrBaseReference"> |
