Skip to content

Commit

Permalink
Reset USS rename
Browse files Browse the repository at this point in the history
Signed-off-by: Colin Stone <30794003+Colin-Stone@users.noreply.github.com>
  • Loading branch information
Colin-Stone committed Feb 18, 2020
1 parent 438e763 commit 8145bf4
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 @@ -247,7 +247,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 8145bf4

Please sign in to comment.