summaryrefslogtreecommitdiff
path: root/completions/xdg-mime
diff options
context:
space:
mode:
Diffstat (limited to 'completions/xdg-mime')
-rw-r--r--completions/xdg-mime24
1 files changed, 13 insertions, 11 deletions
diff --git a/completions/xdg-mime b/completions/xdg-mime
index 92d5b838..72e92c66 100644
--- a/completions/xdg-mime
+++ b/completions/xdg-mime
@@ -2,8 +2,8 @@
_xdg_mime_mimetype()
{
- COMPREPLY+=( $( compgen -S / -W 'application audio font image message model
- multipart text video' -- "$cur" ) )
+ COMPREPLY+=( $(compgen -S / -W 'application audio font image message model
+ multipart text video' -- "$cur") )
[[ $COMPREPLY == */ ]] && compopt -o nospace
}
@@ -17,18 +17,18 @@ _xdg_mime()
if [[ $args -eq 1 ]]; then
if [[ $cur == -* ]]; then
- COMPREPLY=( $( compgen -W '--help --manual --version' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '--help --manual --version' -- "$cur") )
return
fi
- COMPREPLY=( $( compgen -W \
- 'query default install uninstall' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W \
+ 'query default install uninstall' -- "$cur") )
return
fi
case ${words[1]} in
query)
if [[ $args -eq 2 ]]; then
- COMPREPLY=( $( compgen -W 'filetype default' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'filetype default' -- "$cur") )
return
fi
case ${words[2]} in # TODO and $args -eq 3 (takes only one arg!)
@@ -43,25 +43,25 @@ _xdg_mime()
desktops=( "${desktops[@]##*/}" )
$reset
IFS=$'\n'
- COMPREPLY=( $( compgen -W '${desktops[@]}' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '${desktops[@]}' -- "$cur") )
else
_xdg_mime_mimetype
fi
;;
install)
if [[ $cur == -* ]]; then
- COMPREPLY=( $( compgen -W '--mode --novendor' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '--mode --novendor' -- "$cur") )
elif [[ $prev == --mode ]]; then
- COMPREPLY=( $( compgen -W 'user system' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'user system' -- "$cur") )
else
_filedir xml
fi
;;
uninstall)
if [[ $cur == -* ]]; then
- COMPREPLY=( $( compgen -W '--mode' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '--mode' -- "$cur") )
elif [[ $prev == --mode ]]; then
- COMPREPLY=( $( compgen -W 'user system' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'user system' -- "$cur") )
else
_filedir xml
fi
@@ -69,3 +69,5 @@ _xdg_mime()
esac
} &&
complete -F _xdg_mime xdg-mime
+
+# ex: filetype=sh