-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide a cli option to enable and disable completion command
Signed-off-by: Adrian Orive <adrian.orive.oneca@gmail.com>
- Loading branch information
Showing
5 changed files
with
100 additions
and
74 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
Copyright 2020 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package cli | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
func (c *cli) newCompletionCmd() *cobra.Command { | ||
return &cobra.Command{ | ||
Use: "completion [bash|zsh|powershell]", // TODO (requires spf13.cobra update): add fish | ||
DisableFlagsInUseLine: true, | ||
ValidArgs: []string{"bash", "zsh", "powershell"}, | ||
Args: cobra.ExactValidArgs(1), | ||
Short: "Generate completion script", | ||
Long: fmt.Sprintf(`To load completions: | ||
Bash: | ||
$ source <(%[1]s completion bash) | ||
# To load completions for each session, execute once: | ||
Linux: | ||
$ %[1]s completion bash > /etc/bash_completion.d/%[1]s | ||
MacOS: | ||
$ %[1]s completion bash > /usr/local/etc/bash_completion.d/%[1]s | ||
Zsh: | ||
# If shell completion is not already enabled in your environment you will need | ||
# to enable it. You can execute the following once: | ||
$ echo "autoload -U compinit; compinit" >> ~/.zshrc | ||
# To load completions for each session, execute once: | ||
$ %[1]s completion zsh > "${fpath[1]}/_%[1]s" | ||
# You will need to start a new shell for this setup to take effect. | ||
`, c.commandName), | ||
/* TODO (requires spf13.cobra update): add to Long when adding fish | ||
` | ||
Fish: | ||
$ %[1]s completion fish | source | ||
# To load completions for each session, execute once: | ||
$ %[1]s completion fish > ~/.config/fish/completions/%[1]s.fish | ||
` | ||
*/ | ||
RunE: func(cmd *cobra.Command, args []string) (err error) { | ||
switch args[0] { | ||
case "bash": | ||
err = cmd.Root().GenBashCompletion(os.Stdout) | ||
case "zsh": | ||
err = cmd.Root().GenZshCompletion(os.Stdout) | ||
// TODO (requires spf13.cobra update): uncomment when adding fish | ||
//case "fish": | ||
// err = cmd.Root().GenFishCompletion(os.Stdout, true) | ||
case "powershell": | ||
err = cmd.Root().GenPowerShellCompletion(os.Stdout) | ||
} | ||
return | ||
}, | ||
} | ||
} |