summaryrefslogtreecommitdiff
path: root/completions/faillog
diff options
context:
space:
mode:
Diffstat (limited to 'completions/faillog')
-rw-r--r--completions/faillog8
1 files changed, 4 insertions, 4 deletions
diff --git a/completions/faillog b/completions/faillog
index 3b4a23d0..5e7d2ab2 100644
--- a/completions/faillog
+++ b/completions/faillog
@@ -6,11 +6,11 @@ _faillog()
_init_completion -s || return
case $prev in
- -h|--help|-l|--lock-time|-m|--maximum|-t|--time)
+ --help|--lock-time|--maximum|--time|-!(-*)[hlmt])
return
;;
- -u|--user)
- COMPREPLY=( $( compgen -u -- "$cur" ) )
+ --user|-!(-*)u)
+ COMPREPLY=( $(compgen -u -- "$cur") )
return
;;
esac
@@ -18,7 +18,7 @@ _faillog()
$split && return
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
[[ $COMPREPLY == *= ]] && compopt -o nospace
fi
} &&