Shell Autocomplete
Set up tab completion for dotweave in your shell.
Tab completion lets you discover commands, flags, and arguments without reaching for the docs. dotweave supports Bash, Zsh, and Fish.
Add this line to your ~/.bashrc:
eval "$(dotweave autocomplete bash)"Then reload your shell:
source ~/.bashrcAdd this line to your ~/.zshrc:
eval "$(dotweave autocomplete zsh)"Then reload your shell:
source ~/.zshrcAdd this line to your ~/.config/fish/config.fish:
dotweave autocomplete fish | sourceThen reload your shell:
source ~/.config/fish/config.fish