Skip to content

Commit

Permalink
Merge pull request #527 from zowe/ussActions
Browse files Browse the repository at this point in the history
Reset USS rename
  • Loading branch information
zFernand0 committed Feb 21, 2020
2 parents 45b342d + f8f1e07 commit 9cdfbe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<ZoweEx
vscode.commands.registerCommand("zowe.uss.binary", async (node: IZoweUSSTreeNode) => changeFileType(node, true, ussFileProvider));
vscode.commands.registerCommand("zowe.uss.text", async (node: IZoweUSSTreeNode) => changeFileType(node, false, ussFileProvider));
vscode.commands.registerCommand("zowe.uss.renameNode", async (node: IZoweUSSTreeNode) =>
node.renameUSSNode(ussFileProvider, node.getUSSDocumentFilePath()));
ussActions.renameUSSNode(node, ussFileProvider, node.getUSSDocumentFilePath()));
vscode.commands.registerCommand("zowe.uss.uploadDialog", async (node: IZoweUSSTreeNode) => ussActions.uploadDialog(node, ussFileProvider));
vscode.commands.registerCommand("zowe.uss.createNode", async (node: IZoweUSSTreeNode) =>
ussActions.createUSSNodeDialog(node, ussFileProvider));
Expand Down

0 comments on commit 9cdfbe8

Please sign in to comment.