File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -55,27 +55,27 @@ export function activate(context: vscode.ExtensionContext): void {
55
55
// e.g. /** | */
56
56
beforeText : / ^ \s * \/ \* \* (? ! \/ ) ( [ ^ \* ] | \* (? ! \/ ) ) * $ / ,
57
57
afterText : / ^ \s * \* \/ $ / ,
58
- action : { indentAction : IndentAction . IndentOutdent , appendText : ' * ' }
58
+ action : { indentAction : vscode . IndentAction . IndentOutdent , appendText : ' * ' }
59
59
} ,
60
60
{
61
61
// e.g. /** ...|
62
62
beforeText : / ^ \s * \/ \* \* (? ! \/ ) ( [ ^ \* ] | \* (? ! \/ ) ) * $ / ,
63
- action : { indentAction : IndentAction . None , appendText : ' * ' }
63
+ action : { indentAction : vscode . IndentAction . None , appendText : ' * ' }
64
64
} ,
65
65
{
66
66
// e.g. * ...|
67
67
beforeText : / ^ ( \t | ( \ \ ) ) * \ \* ( \ ( [ ^ \* ] | \* (? ! \/ ) ) * ) ? $ / ,
68
- action : { indentAction : IndentAction . None , appendText : '* ' }
68
+ action : { indentAction : vscode . IndentAction . None , appendText : '* ' }
69
69
} ,
70
70
{
71
71
// e.g. */|
72
72
beforeText : / ^ ( \t | ( \ \ ) ) * \ \* \/ \s * $ / ,
73
- action : { indentAction : IndentAction . None , removeText : 1 }
73
+ action : { indentAction : vscode . IndentAction . None , removeText : 1 }
74
74
} ,
75
75
{
76
76
// e.g. *-----*/|
77
77
beforeText : / ^ ( \t | ( \ \ ) ) * \ \* [ ^ / ] * \* \/ \s * $ / ,
78
- action : { indentAction : IndentAction . None , removeText : 1 }
78
+ action : { indentAction : vscode . IndentAction . None , removeText : 1 }
79
79
}
80
80
]
81
81
} ) ;
You can’t perform that action at this time.
0 commit comments