Skip to content

Commit

Permalink
Merge pull request #484 from zowe/WordTweak
Browse files Browse the repository at this point in the history
update placeholder text
  • Loading branch information
zFernand0 authored Feb 3, 2020
2 parents 664a0dc + 163370b commit ad27b1d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/command/MvsCommandHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,11 @@ export class MvsCommandHandler {
response = choice === createPick ? "" : choice.label;
} else {
const quickpick = vscode.window.createQuickPick();
quickpick.placeholder = localize("issueMvsCommand.command.hostname", "Select a command to run against ") + hostname +
(alwaysEdit ? localize("issueMvsCommand.command.edit", " (An option to edit will follow)") :
localize("issueMvsCommand.command.immediately", " immediately"));
// quickpick.placeholder = localize("issueMvsCommand.options.prompt", "Select and edit a previous command");
quickpick.placeholder = alwaysEdit ?
localize("issueMvsCommand.command.hostnameAlt", "Select a command to run against ") + hostname +
localize("issueMvsCommand.command.edit", " (An option to edit will follow)"):
localize("issueMvsCommand.command.hostname", "Select a command to run immediately against ") + hostname;

quickpick.items = [createPick, ...items];
quickpick.ignoreFocusOut = true;
quickpick.show();
Expand Down

0 comments on commit ad27b1d

Please sign in to comment.