File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -24,27 +24,27 @@ export function getLanguageConfiguration(lang: string): LanguageConfiguration {
24
24
]
25
25
: [
26
26
{
27
- beforeText : / ^ \s \/ \/ \/ / ,
27
+ beforeText : / ^ \s * \/ \/ \/ / ,
28
28
action : { indentAction : IndentAction . None , appendText : "/// " } ,
29
29
} ,
30
30
{
31
- beforeText : / ^ \s \/ \/ [ ^ / ] ? / ,
31
+ beforeText : / ^ \s + \/ \/ [ ^ / ] ? / ,
32
32
action : { indentAction : IndentAction . None , appendText : "// " } ,
33
33
} ,
34
34
{
35
- beforeText : / ^ \s ; ; / ,
35
+ beforeText : / ^ \s + ; ; / ,
36
36
action : { indentAction : IndentAction . None , appendText : ";; " } ,
37
37
} ,
38
38
{
39
- beforeText : / ^ \s ; [ ^ ; ] ? / ,
39
+ beforeText : / ^ \s + ; [ ^ ; ] ? / ,
40
40
action : { indentAction : IndentAction . None , appendText : "; " } ,
41
41
} ,
42
42
{
43
- beforeText : / ^ \s # ; / ,
43
+ beforeText : / ^ \s * # ; / ,
44
44
action : { indentAction : IndentAction . None , appendText : "#; " } ,
45
45
} ,
46
46
{
47
- beforeText : / ^ \s # # ; / ,
47
+ beforeText : / ^ \s * # # ; / ,
48
48
action : { indentAction : IndentAction . None , appendText : "##; " } ,
49
49
} ,
50
50
] ,
You can’t perform that action at this time.
0 commit comments