gio: Add missing "gio remove" option to bash completion script

Bash completion	script allows to complete various options, but "gio remove"
is missing. Let's add this missing option.
This commit is contained in:
Ondrej Holy 2019-09-16 11:19:50 +02:00
parent ed2ceae9f0
commit 84c8899fca

View File

@ -106,7 +106,7 @@ __gio_location() {
__gio() {
# Complete subcommands
if (( ${COMP_CWORD} == 1 )); then
COMPREPLY=($(compgen -W "help version cat copy info list mime mkdir monitor mount move open rename save set trash tree" -- "${COMP_WORDS[1]}"))
COMPREPLY=($(compgen -W "help version cat copy info list mime mkdir monitor mount move open rename remove save set trash tree" -- "${COMP_WORDS[1]}"))
compopt +o nospace
return 0
fi