Zsh completion script for the aider
command-line tool.
Clone this repository to your local machine:
git clone https://github.com/hmgle/aider-zsh-complete.git
cd aider-zsh-complete
Copy the _aider
completion script to your zsh completions directory:
mkdir -p ~/.zsh/completions
cp _aider ~/.zsh/completions/
Add the following lines to your ~/.zshrc
file:
# Add the completions directory to fpath
fpath=(~/.zsh/completions $fpath)
# Initialize the completion system
autoload -Uz compinit
compinit
Reload your zsh configuration to apply the changes:
source ~/.zshrc
Test the completion by typing aider
followed by Tab
:
aider <Tab>
You should see a list of available options and arguments.
If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.
This project is licensed under the Apache License 2.0. See the LICENSE file for details.