summaryrefslogtreecommitdiff
path: root/completions/mr
diff options
context:
space:
mode:
Diffstat (limited to 'completions/mr')
-rw-r--r--completions/mr14
1 files changed, 7 insertions, 7 deletions
diff --git a/completions/mr b/completions/mr
index 9229e309..15f634a3 100644
--- a/completions/mr
+++ b/completions/mr
@@ -37,18 +37,18 @@ _mr() {
;;
clean)
if [[ "${cur}" == -* ]]; then
- COMPREPLY=( $( compgen -W '-f' -- "${cur}" ) )
+ COMPREPLY=( $(compgen -W '-f' -- "${cur}") )
fi
return
;;
commit|ci|record)
if [[ "${cur}" == -* ]]; then
- COMPREPLY=( $( compgen -W '-m' -- "${cur}" ) )
+ COMPREPLY=( $(compgen -W '-m' -- "${cur}") )
fi
return
;;
run)
- COMPREPLY=( $( compgen -c -- "${cur}" ) )
+ COMPREPLY=( $(compgen -c -- "${cur}") )
return
;;
*)
@@ -60,11 +60,11 @@ _mr() {
# Complete top-level options and commands.
case $prev in
- -c|--config)
+ --config|-!(-*)c)
_filedir
return
;;
- -d|--directory)
+ --directory|-!(-*)d)
_filedir -d
return
;;
@@ -76,9 +76,9 @@ _mr() {
options="${options//-[a-z]$'\n'/}"
# Remove deprecated options.
options="${options//--path/}"
- COMPREPLY=( $( compgen -W "${options}" -- "${cur}" ) )
+ COMPREPLY=( $(compgen -W "${options}" -- "${cur}") )
else
- COMPREPLY=( $( compgen -W "${commands}" -- "${cur}" ) )
+ COMPREPLY=( $(compgen -W "${commands}" -- "${cur}") )
fi
} &&
complete -F _mr mr