Command modifymedium have now additional option --move

This commit is contained in:
2017-10-07 19:28:22 +02:00
parent 47e3ff6bbe
commit 9b7ab10421

View File

@@ -1495,7 +1495,8 @@ _VBoxManage() {
;;
*)
_find_item_name 2
items=(--type --autoreset --property --compact --resize)
items=(--type --autoreset --property --compact --resize
--move)
_get_excluded_items "${items[@]}"
COMPREPLY=( $(compgen -W "$result" -- ${cur}) )
case "${prev}" in
@@ -1507,6 +1508,9 @@ _VBoxManage() {
--autoreset)
COMPREPLY=( $(compgen -W "on off" -- ${cur}) )
;;
--move)
COMPREPLY=( $(compgen -o dirnames -- ${cur}) )
;;
esac
;;
esac