mirror of
https://github.com/alacritty/alacritty.git
synced 2024-10-27 05:32:54 -04:00
Give zsh completion file the correct name when installing with cargo deb --install
The zsh completion name for the deb installer has been corrected. The installation instructions for the zsh completions have also been updated to make it possible to install them without root permissios.
This commit is contained in:
parent
35ea0cded2
commit
e2c1e56b25
2 changed files with 12 additions and 3 deletions
|
@ -77,6 +77,6 @@ assets = [
|
|||
["alacritty.desktop", "usr/share/applications/", "644"],
|
||||
["alacritty-completions.bash", "usr/share/bash-completion/completions/alacritty", "644"],
|
||||
["alacritty-completions.fish", "usr/share/fish/completions/alacritty", "644"],
|
||||
["alacritty-completions.zsh", "usr/share/zsh/functions/Completion/alacritty", "644"],
|
||||
["alacritty-completions.zsh", "usr/share/zsh/vendor-completions/_alacritty", "644"],
|
||||
["alacritty.info", "usr/share/terminfo/a/alacritty", "644"],
|
||||
]
|
||||
|
|
13
README.md
13
README.md
|
@ -295,10 +295,19 @@ To get automatic completions for alacritty's flags and arguments you can install
|
|||
|
||||
### Zsh
|
||||
|
||||
To install the completions for zsh, run
|
||||
To install the completions for zsh, you can place the `alacritty-completions.zsh` as `_alacritty` in any directory referenced by `$fpath`.
|
||||
|
||||
If you do not already have such a directory registered through your `~/.zshrc`, you can add one like this:
|
||||
|
||||
```sh
|
||||
mkdir -p ${ZDOTDIR:-~}/.zsh_functions
|
||||
echo 'fpath+=${ZDOTDIR:-~}/.zsh_functions' >> ${ZDOTDIR:-~}/.zshrc
|
||||
```
|
||||
sudo cp alacritty-completions.zsh /usr/share/zsh/functions/Completion/X/_alacritty
|
||||
|
||||
Then copy the completion file to this directory:
|
||||
|
||||
```sh
|
||||
cp alacritty-completions.zsh ${ZDOTDIR:-~}/.zsh_functions/_alacritty
|
||||
```
|
||||
|
||||
### Bash
|
||||
|
|
Loading…
Reference in a new issue