-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cmd): shell completion subcommand (#576)
Co-authored-by: Sumire (菫) <[email protected]>
- Loading branch information
Showing
2 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
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,59 @@ | ||
/* | ||
* SPDX-License-Identifier: AGPL-3.0-only | ||
* Copyright (c) 2022-2024, daeuniverse Organization <[email protected]> | ||
*/ | ||
|
||
package cmd | ||
|
||
import ( | ||
"bytes" | ||
"errors" | ||
"fmt" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
var ( | ||
completionCmd = &cobra.Command{ | ||
Use: "completion [bash|zsh|fish]", | ||
Short: "Output shell completion code for the specified shell (bash, zsh or fish)", | ||
Long: "Output shell completion code for the specified shell (bash, zsh or fish).", | ||
Args: cobra.ExactArgs(1), | ||
ValidArgs: []string{"bash", "zsh", "fish"}, | ||
Hidden: true, | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
out, err := getCompletion(args[0], cmd.Parent()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
fmt.Print(out) | ||
return nil | ||
}, | ||
} | ||
) | ||
|
||
// return the auto completion shell script, if supported | ||
func getCompletion(sh string, parent *cobra.Command) (string, error) { | ||
var err error | ||
var buf bytes.Buffer | ||
|
||
switch sh { | ||
case "bash": | ||
err = parent.GenBashCompletion(&buf) | ||
case "zsh": | ||
err = parent.GenZshCompletion(&buf) | ||
case "fish": | ||
err = parent.GenFishCompletion(&buf, true) | ||
default: | ||
err = errors.New("unsupported shell type (must be bash, zsh or fish): " + sh) | ||
} | ||
|
||
if err != nil { | ||
return "", err | ||
} | ||
return buf.String(), nil | ||
} | ||
func init() { | ||
rootCmd.AddCommand(completionCmd) | ||
} |
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