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 {
2424 ]
2525 : [
2626 {
27- beforeText : / ^ \s \/ \/ \/ / ,
27+ beforeText : / ^ \s * \/ \/ \/ / ,
2828 action : { indentAction : IndentAction . None , appendText : "/// " } ,
2929 } ,
3030 {
31- beforeText : / ^ \s \/ \/ [ ^ / ] ? / ,
31+ beforeText : / ^ \s + \/ \/ [ ^ / ] ? / ,
3232 action : { indentAction : IndentAction . None , appendText : "// " } ,
3333 } ,
3434 {
35- beforeText : / ^ \s ; ; / ,
35+ beforeText : / ^ \s + ; ; / ,
3636 action : { indentAction : IndentAction . None , appendText : ";; " } ,
3737 } ,
3838 {
39- beforeText : / ^ \s ; [ ^ ; ] ? / ,
39+ beforeText : / ^ \s + ; [ ^ ; ] ? / ,
4040 action : { indentAction : IndentAction . None , appendText : "; " } ,
4141 } ,
4242 {
43- beforeText : / ^ \s # ; / ,
43+ beforeText : / ^ \s * # ; / ,
4444 action : { indentAction : IndentAction . None , appendText : "#; " } ,
4545 } ,
4646 {
47- beforeText : / ^ \s # # ; / ,
47+ beforeText : / ^ \s * # # ; / ,
4848 action : { indentAction : IndentAction . None , appendText : "##; " } ,
4949 } ,
5050 ] ,
You can’t perform that action at this time.
0 commit comments