Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in shFormat.ts #47

Merged
merged 1 commit into from
Jul 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
shFormat.ts: Fix typos
  • Loading branch information
rodrigobdz committed Jul 24, 2019
commit 3caff1217acca188ed53d5dfc338023ae410368e
6 changes: 3 additions & 3 deletions src/shFormat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ function showMamualInstallMessage() {
vscode.window.showErrorMessage(
`[${configurationPrefix}.${
ConfigItemName.Path
}]not found! please install manual https://mvdan.cc/sh/cmd/shfmt `
}]not found! please install manually https://mvdan.cc/sh/cmd/shfmt `
);
}
function installFmtForMaxos() {
Expand Down Expand Up @@ -346,12 +346,12 @@ function installForLinux() {
}
terminal.sendText("echo '**Enjoy shellscript!**'", true);
terminal.sendText(
"echo 'fork or star https://github.com/foxundermoon/vs-shell-format'",
"echo 'fork or star https://github.com/foxundermoon/vs-shell-format'",
true
);
} catch (error) {
vscode.window.showWarningMessage(
"install shfmt faild , please install manual https://mvdan.cc/sh/cmd/shfmt"
"install shfmt failed , please install manually https://mvdan.cc/sh/cmd/shfmt"
);
}
}
Expand Down