Last active
May 30, 2020 09:43
-
-
Save igemnace/351dbc1d9cd7a0a3ae100df1c0cf20d5 to your computer and use it in GitHub Desktop.
Simple zsh completion widgets for my AUR scripts and functions. Put somewhere in your `fpath`.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef aurclean | |
_files -W "${AUR_DIR:-$HOME/.aur}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef aurinstall | |
_files -W "${AUR_DIR:-$HOME/.aur}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef aurremove | |
_files -W "${AUR_DIR:-$HOME/.aur}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef aurupdate | |
_files -W "${AUR_DIR:-$HOME/.aur}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef reaur | |
_files -W "${AUR_DIR:-$HOME/.aur}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef unaur | |
_files -W "${AUR_DIR:-$HOME/.aur}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment