File tree 2 files changed +16
-2
lines changed
shell/Markdown.VT/ColorCode.VT/Parser
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,20 @@ public class Bash : ILanguage
24
24
{ 1 , BashCommentScope }
25
25
} ) ,
26
26
27
+ new LanguageRule (
28
+ @"'[^\n]*?'" ,
29
+ new Dictionary < int , string >
30
+ {
31
+ { 0 , ScopeName . String }
32
+ } ) ,
33
+
34
+ new LanguageRule (
35
+ @"""[^\n]*?(?<!\\)""" ,
36
+ new Dictionary < int , string >
37
+ {
38
+ { 0 , ScopeName . String }
39
+ } ) ,
40
+
27
41
// match the first word of a line in a multi-line string as the command name.
28
42
new LanguageRule (
29
43
@"(?m)^\s*(\w+)" ,
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public IList<LanguageRule> Rules
48
48
} ) ,
49
49
50
50
new LanguageRule (
51
- @"'[^\n]*?(?<!\\) '" ,
51
+ @"'[^\n]*?'" ,
52
52
new Dictionary < int , string >
53
53
{
54
54
{ 0 , ScopeName . String }
@@ -62,7 +62,7 @@ public IList<LanguageRule> Rules
62
62
} ) ,
63
63
64
64
new LanguageRule (
65
- @"(?s)( ""[^\n]*?(?<!`)"") " ,
65
+ @"""[^\n]*?(?<!`)""" ,
66
66
new Dictionary < int , string >
67
67
{
68
68
{ 0 , ScopeName . String }
You can’t perform that action at this time.
0 commit comments