Refactor: Remove powershell support

This commit is contained in:
Ben Mezger
2021-02-02 20:02:53 -03:00
committed by Anthony Fok
parent 216b00f358
commit a7c515e1b5
2 changed files with 4 additions and 8 deletions

View File

@@ -22,10 +22,8 @@ var _ cmder = (*genautocompleteCmd)(nil)
type genautocompleteCmd struct {
autocompleteTarget string
// bash or zsh
// bash, zsh or fish
autocompleteType string
*baseCmd
}
@@ -45,7 +43,7 @@ for convenience, and the command may need superuser rights, e.g.:
Add ` + "`--completionfile=/path/to/file`" + ` flag to set alternative
file-path and name.
Add ` + "`--type={bash, zsh, fish or powershell}`" + ` flag to set alternative
Add ` + "`--type={bash, zsh or fish}`" + ` flag to set alternative
shell type.
Logout and in again to reload the completion scripts,
@@ -62,8 +60,6 @@ or just source them in directly:
err = cmd.Root().GenBashCompletionFile(cc.autocompleteTarget)
case "fish":
err = cmd.Root().GenFishCompletionFile(cc.autocompleteTarget, true)
case "powershell":
err = cmd.Root().GenFishCompletionFile(cc.autocompleteTarget, true)
default:
return newUserError("Unsupported completion type")
}