Skip to content

Commit

Permalink
Handle 'workbench.action.addRootFolder' vscode command
Browse files Browse the repository at this point in the history
Signed-off-by: Tomer Epstein <tomer.epstein@sap.com>
  • Loading branch information
tomer-epstein authored and vince-fugnitto committed Mar 17, 2020
1 parent f015148 commit 9c4e4d9
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,9 @@ export class PluginVscodeCommandsContribution implements CommandContribution {
commands.registerCommand({ id: 'workbench.action.files.openFolder' }, {
execute: () => commands.executeCommand(WorkspaceCommands.OPEN_FOLDER.id)
});
commands.registerCommand({ id: 'workbench.action.addRootFolder' }, {
execute: () => commands.executeCommand(WorkspaceCommands.ADD_FOLDER.id)
});
commands.registerCommand({ id: 'workbench.action.gotoLine' }, {
execute: () => commands.executeCommand('editor.action.gotoLine')
});
Expand Down

0 comments on commit 9c4e4d9

Please sign in to comment.