aboutsummaryrefslogtreecommitdiff
path: root/shell-completions/aur.completor.bash
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--shell-completions/aur.completor.bash (renamed from aur.completor.bash)3
1 files changed, 2 insertions, 1 deletions
diff --git a/aur.completor.bash b/shell-completions/aur.completor.bash
index 48c6e8b..cb83422 100644
--- a/aur.completor.bash
+++ b/shell-completions/aur.completor.bash
@@ -4,6 +4,7 @@ cmd=aur
cmd_args=@aur_pkgs
cmd_opts=(
-h --help
+ -v --version
-l --list
-f --force
-g --git
@@ -14,5 +15,5 @@ cmd_opts=(
reply_aur_pkgs() {
pkgs=$(basename -a ~/.aur/*/ | paste -d ' ' -s -)
- COMPREPLY=( "$(compgen -W "$pkgs" -- "$cur")" )
+ COMPREPLY=( $(compgen -W "$pkgs" -- "$cur") )
}