diff --git a/package.json b/package.json index b0055274..c1f29ffb 100644 --- a/package.json +++ b/package.json @@ -54,11 +54,6 @@ "title": "Commit Selected", "category": "SVN" }, - { - "command": "svn.commitWithMessage", - "title": "Commit All Changed Files", - "category": "SVN" - }, { "command": "svn.openDiffHead", "title": "Diff Changes HEAD", diff --git a/src/repository.ts b/src/repository.ts index 8d8d2f50..351b718d 100644 --- a/src/repository.ts +++ b/src/repository.ts @@ -50,8 +50,8 @@ export class Repository { Uri.file(repository.root) ); this.sourceControl.acceptInputCommand = { - command: "svn.commitWithMessage", - title: "Commit All Changed Files", + command: "svn.commit", + title: "commit", arguments: [this.sourceControl] }; this.sourceControl.quickDiffProvider = this;