Skip to content

Commit

Permalink
Update command names (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanator authored Mar 9, 2021
1 parent 3ce905c commit fbd9b1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function activate(context: ExtensionContext) {

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

context.subscriptions.push(commands.registerCommand('sourcery.clones.workspace', (resource: Uri, selected?: Uri[]) => {
let request: ExecuteCommandParams = {
command: 'detect_clones',
command: 'clone/scan',
arguments: [{
'uri': resource,
'all_uris': selected
Expand Down

0 comments on commit fbd9b1b

Please sign in to comment.