Skip to content

Commit 0bada44

Browse files
committed
started on commands object
1 parent fc01a78 commit 0bada44

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/commands.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const {commands} = require('vscode');
2+
3+
function SvnCommands() {
4+
//some form of loop that gets the prototypes and registers them with vscode.
5+
}
6+
7+
SvnCommands.prototype.fileOpen = (resourceUri) {
8+
commands.executeCommand('vscode.open', resourceUri);
9+
}

0 commit comments

Comments
 (0)