Files
mkdocs/docs/Divers/zsh/completion.md
2023-11-14 20:35:51 +01:00

31 lines
531 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# completion
https://scriptingosx.com/2019/07/moving-to-zsh-part-5-completions/
```bash
echo $fpath
/Users/bruno/.zinit/completions /usr/local/share/zsh/site-functions /usr/share/zsh/site-functions /usr/share/zsh/5.8.1/functions /Users/bruno/.zinit/plugins/zsh-users---zsh-completions/src
```
```
/opt/homebrew/etc/bash_completion.d
```
### .zshrc
```bash
autoload -U +X compinit && compinit
autoload -U +X bashcompinit && bashcompinit
source /opt/homebrew/etc/bash_completion.d/soco-cli-gui-completion.bash
```