We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2175025 + 6b61cab commit 4d01092Copy full SHA for 4d01092
package.json
@@ -54,6 +54,11 @@
54
"title": "Commit Selected",
55
"category": "SVN"
56
},
57
+ {
58
+ "command": "svn.commitWithMessage",
59
+ "title": "Commit All Changed Files",
60
+ "category": "SVN"
61
+ },
62
{
63
"command": "svn.openDiffHead",
64
"title": "Diff Changes HEAD",
src/repository.ts
@@ -50,8 +50,8 @@ export class Repository {
50
Uri.file(repository.root)
51
);
52
this.sourceControl.acceptInputCommand = {
53
- command: "svn.commit",
- title: "commit",
+ command: "svn.commitWithMessage",
+ title: "Commit All Changed Files",
arguments: [this.sourceControl]
};
this.sourceControl.quickDiffProvider = this;
0 commit comments