Merge branch 'wip/oholy/gio-remove-completion' into 'master'

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

See merge request GNOME/glib!1110
This commit is contained in:
Sebastian Dröge 2019-09-17 10:06:49 +00:00
commit cf25d9a2ec

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