Skip to content

Commit f481326

Browse files
committed
Fix IndentAction references in main.ts
1 parent c3e53cc commit f481326

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)