File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 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 {
5555 // e.g. /** | */
5656 beforeText : / ^ \s * \/ \* \* (? ! \/ ) ( [ ^ \* ] | \* (? ! \/ ) ) * $ / ,
5757 afterText : / ^ \s * \* \/ $ / ,
58- action : { indentAction : IndentAction . IndentOutdent , appendText : ' * ' }
58+ action : { indentAction : vscode . IndentAction . IndentOutdent , appendText : ' * ' }
5959 } ,
6060 {
6161 // e.g. /** ...|
6262 beforeText : / ^ \s * \/ \* \* (? ! \/ ) ( [ ^ \* ] | \* (? ! \/ ) ) * $ / ,
63- action : { indentAction : IndentAction . None , appendText : ' * ' }
63+ action : { indentAction : vscode . IndentAction . None , appendText : ' * ' }
6464 } ,
6565 {
6666 // e.g. * ...|
6767 beforeText : / ^ ( \t | ( \ \ ) ) * \ \* ( \ ( [ ^ \* ] | \* (? ! \/ ) ) * ) ? $ / ,
68- action : { indentAction : IndentAction . None , appendText : '* ' }
68+ action : { indentAction : vscode . IndentAction . None , appendText : '* ' }
6969 } ,
7070 {
7171 // e.g. */|
7272 beforeText : / ^ ( \t | ( \ \ ) ) * \ \* \/ \s * $ / ,
73- action : { indentAction : IndentAction . None , removeText : 1 }
73+ action : { indentAction : vscode . IndentAction . None , removeText : 1 }
7474 } ,
7575 {
7676 // e.g. *-----*/|
7777 beforeText : / ^ ( \t | ( \ \ ) ) * \ \* [ ^ / ] * \* \/ \s * $ / ,
78- action : { indentAction : IndentAction . None , removeText : 1 }
78+ action : { indentAction : vscode . IndentAction . None , removeText : 1 }
7979 }
8080 ]
8181 } ) ;
You can’t perform that action at this time.
0 commit comments