Use dedent for completion.go

This commit is contained in:
lojies 2016-09-06 15:49:20 +08:00
parent 5e22e51f34
commit b118db0a17

View File

@ -20,18 +20,21 @@ import (
"bytes"
"io"
"github.com/renstrom/dedent"
"github.com/spf13/cobra"
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
)
const (
completion_long = `Output shell completion code for the given shell (bash or zsh).
var (
completion_long = dedent.Dedent(`
Output shell completion code for the given shell (bash or zsh).
This command prints shell code which must be evaluation to provide interactive
completion of kubectl commands.
`
completion_example = `
`)
completion_example = dedent.Dedent(`
$ source <(kubectl completion bash)
will load the kubectl completion code for bash. Note that this depends on the
@ -46,7 +49,7 @@ If you use zsh*, the following will load kubectl zsh completion:
$ source <(kubectl completion zsh)
* zsh completions are only supported in versions of zsh >= 5.2`
* zsh completions are only supported in versions of zsh >= 5.2`)
)
var (