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-completeCopy 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 -U compinit && compinit -uReload your zsh configuration to apply the changes:
source ~/.zshrcTest 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.