yadm/completion/README.md

48 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

# Installation
2017-08-11 13:50:25 -04:00
### Prerequisites
2020-07-26 13:37:20 -04:00
2020-12-28 12:26:35 -05:00
Bash and Zsh completion only works if Git completions are also enabled.
2020-12-28 12:26:35 -05:00
## Homebrew
2020-07-26 13:37:20 -04:00
2020-12-28 12:26:35 -05:00
If using `homebrew` to install yadm, Bash, Zsh, and Fish completions should
automatically be installed. For Bash and Zsh, you also must install
`bash-completion` or `zsh-completions`. This might require you to include the
main completion script in your own shell configuration like this:
2020-07-26 13:37:20 -04:00
```bash
[ -f /usr/local/etc/bash_completion ] && source /usr/local/etc/bash_completion
```
2020-12-28 12:26:35 -05:00
## Bash (manual installation)
2020-07-26 13:37:20 -04:00
Copy the completion script locally, and add this to you bashrc:
2020-07-26 13:37:20 -04:00
```bash
2020-12-28 12:26:35 -05:00
[ -f /path/to/yadm/completion/bash/yadm ] && source /path/to/yadm/completion/bash/yadm
```
2020-12-28 12:26:35 -05:00
## Zsh (manual installation)
2020-07-26 13:37:20 -04:00
Add the `completion/zsh` folder to `$fpath` in `.zshrc`:
```zsh
2020-12-28 12:26:35 -05:00
fpath=(/path/to/yadm/completion/zsh $fpath)
autoload -U compinit
compinit
2017-08-11 13:50:25 -04:00
```
2020-12-28 12:26:35 -05:00
## Zsh (using [zplug](https://github.com/b4b4r07/zplug))
2020-07-26 13:37:20 -04:00
2017-08-11 14:09:27 -04:00
Load `_yadm` as a plugin in your `.zshrc`:
2020-07-26 13:37:20 -04:00
```zsh
fpath=("$ZPLUG_HOME/bin" $fpath)
2020-12-28 12:26:35 -05:00
zplug "TheLocehiliosan/yadm", use:"completion/zsh/_yadm", as:command, defer:2
```
2020-06-04 00:31:57 -04:00
2020-12-28 12:26:35 -05:00
## Fish (manual installation)
Copy the completion script `yadm.fish` to any folder within `$fish_complete_path`. For example, for local installation, you can copy it to `$HOME/.config/fish/completions/` and it will be loaded when `yadm` is invoked.