~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/Mono.Texteditor/SyntaxModes/ShellScriptSyntaxMode.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        <Property name="StringQuote">"</Property>
32
32
        <Property name="StringQuote">'</Property>
33
33
        
34
 
        <EolSpan color = "comment" rule="Comment">#</EolSpan>
 
34
        <EolSpan color = "Comment(Line)" rule="Comment">#</EolSpan>
35
35
        
36
 
        <Span color = "string" rule="String" stopateol = "true" escape='\'>
 
36
        <Span color = "String" rule="String" stopateol = "true" escape='\'>
37
37
                <Begin>"</Begin>
38
38
                <End>"</End>
39
39
        </Span>
40
40
        
41
 
        <Span color = "string" rule="String" stopateol = "true" escape='\'>
 
41
        <Span color = "String" rule="String" stopateol = "true" escape='\'>
42
42
                <Begin>&apos;</Begin>
43
43
                <End>&apos;</End>
44
44
        </Span>
45
45
        
46
 
        <Span color = "text.preprocessor" rule="String" stopateol = "true" escape='\'>
 
46
        <Span color = "Preprocessor" rule="String" stopateol = "true" escape='\'>
47
47
                <Begin>${</Begin>
48
48
                <End>}</End>
49
49
        </Span>
50
50
                
51
 
        <Match color = "string">CSharpNumber</Match>
52
 
        <Match color = "text.preprocessor">\$\w+</Match>
 
51
        <Match color = "String">CSharpNumber</Match>
 
52
        <Match color = "Preprocessor">\$\w+</Match>
53
53
        
54
 
        <Keywords color = "keyword.selection">
 
54
        <Keywords color = "Keyword(Selection)">
55
55
                <Word>if</Word>
56
56
                <Word>then</Word>
57
57
                <Word>elif</Word>
63
63
                <Word>local</Word>
64
64
        </Keywords>
65
65
        
66
 
        <Keywords color = "keyword.iteration">
 
66
        <Keywords color = "Keyword(Iteration)">
67
67
                <Word>while</Word>
68
68
                <Word>for</Word>
69
69
                <Word>do</Word>
70
70
                <Word>done</Word>
71
71
        </Keywords>
72
72
        
73
 
        <Keywords color = "keyword.jump">
 
73
        <Keywords color = "Keyword(Jump)">
74
74
                <Word>return</Word>
75
75
                <Word>continue</Word>
76
76
        </Keywords>
77
77
        
78
78
        <Rule name = "Comment">
79
 
                <Keywords color="comment.keyword.todo" ignorecase="True">
 
79
                <Keywords color="Comment Tag" ignorecase="True">
80
80
                        <Word>TODO</Word>
81
81
                        <Word>FIXME</Word>
82
82
                        <Word>HACK</Word>
84
84
                </Keywords>     
85
85
        </Rule>
86
86
        <Rule name = "String">
87
 
                <Match color = "text.preprocessor">\$\w+</Match>
 
87
                <Match color = "Preprocessor">\$\w+</Match>
88
88
        </Rule>
89
89
</SyntaxMode>
90
90