diff --git a/VBoxManage b/VBoxManage index 4d2d20c..c5e6059 100644 --- a/VBoxManage +++ b/VBoxManage @@ -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