mirror of
https://github.com/rclone/rclone
synced 2024-10-31 20:16:42 +01:00
57d5de6fba
git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g' goimports -w `find . -name \*.go`
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
package genautocomplete
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/rclone/rclone/cmd"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
completionDefinition.AddCommand(zshCommandDefinition)
|
|
}
|
|
|
|
var zshCommandDefinition = &cobra.Command{
|
|
Use: "zsh [output_file]",
|
|
Short: `Output zsh completion script for rclone.`,
|
|
Long: `
|
|
Generates a zsh autocompletion script for rclone.
|
|
|
|
This writes to /usr/share/zsh/vendor-completions/_rclone by default so will
|
|
probably need to be run with sudo or as root, eg
|
|
|
|
sudo rclone genautocomplete zsh
|
|
|
|
Logout and login again to use the autocompletion scripts, or source
|
|
them directly
|
|
|
|
autoload -U compinit && compinit
|
|
|
|
If you supply a command line argument the script will be written
|
|
there.
|
|
`,
|
|
Run: func(command *cobra.Command, args []string) {
|
|
cmd.CheckArgs(0, 1, command, args)
|
|
out := "/usr/share/zsh/vendor-completions/_rclone"
|
|
if len(args) > 0 {
|
|
out = args[0]
|
|
}
|
|
outFile, err := os.Create(out)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer func() { _ = outFile.Close() }()
|
|
err = cmd.Root.GenZshCompletion(outFile)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
},
|
|
}
|