mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
Add install instructions for zsh on Mac OS (#1417)
zsh is now the default on Mac OS, but the $_fpath version of the installation instructions are likely to put the completion in a strange location that the user might not expect (e.g. an oh-my-zsh plugin's function directory). So, since Mac OS seems to (as far as I can tell) provide a stable location, this PR recommends using that path instead.
This commit is contained in:
parent
5d46ac904d
commit
5738d6b72d
1 changed files with 3 additions and 0 deletions
|
@ -638,7 +638,10 @@ to enable it. You can execute the following once:
|
||||||
$ echo "autoload -U compinit; compinit" >> ~/.zshrc
|
$ echo "autoload -U compinit; compinit" >> ~/.zshrc
|
||||||
|
|
||||||
To load completions for every new session, execute once:
|
To load completions for every new session, execute once:
|
||||||
|
# Linux:
|
||||||
$ %[1]s completion zsh > "${fpath[1]}/_%[1]s"
|
$ %[1]s completion zsh > "${fpath[1]}/_%[1]s"
|
||||||
|
# macOS:
|
||||||
|
$ %[1]s completion zsh > /usr/local/share/zsh/site-functions/_%[1]s
|
||||||
|
|
||||||
You will need to start a new shell for this setup to take effect.
|
You will need to start a new shell for this setup to take effect.
|
||||||
`, c.Root().Name()),
|
`, c.Root().Name()),
|
||||||
|
|
Loading…
Reference in a new issue