Skip to content

Commit fbd9b1b

Browse files
authored
Update command names (#29)
1 parent 3ce905c commit fbd9b1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function activate(context: ExtensionContext) {
8282

8383
context.subscriptions.push(commands.registerCommand('sourcery.refactor.workspace', (resource: Uri, selected?: Uri[]) => {
8484
let request: ExecuteCommandParams = {
85-
command: 'refactor_workspace',
85+
command: 'refactoring/scan',
8686
arguments: [{
8787
'uri': resource,
8888
'all_uris': selected
@@ -93,7 +93,7 @@ export function activate(context: ExtensionContext) {
9393

9494
context.subscriptions.push(commands.registerCommand('sourcery.clones.workspace', (resource: Uri, selected?: Uri[]) => {
9595
let request: ExecuteCommandParams = {
96-
command: 'detect_clones',
96+
command: 'clone/scan',
9797
arguments: [{
9898
'uri': resource,
9999
'all_uris': selected

0 commit comments

Comments
 (0)