mirror of
https://github.com/gryf/vboxmanage-bash-completion.git
synced 2025-12-17 11:30:23 +01:00
Fix run and start subcommands for guestcontrol
This commit is contained in:
@@ -1459,7 +1459,7 @@ _VBoxManage() {
|
||||
items+=(--quiet -q)
|
||||
|
||||
_get_excluded_items "${items[@]}"
|
||||
compreply=( $(compgen -w "$result" -- ${cur}) )
|
||||
COMPREPLY=( $(compgen -W "$result" -- ${cur}) )
|
||||
;;
|
||||
|
||||
start)
|
||||
@@ -1478,7 +1478,7 @@ _VBoxManage() {
|
||||
items+=(--quiet -q)
|
||||
|
||||
_get_excluded_items "${items[@]}"
|
||||
compreply=( $(compgen -w "$result" -- ${cur}) )
|
||||
COMPREPLY=( $(compgen -W "$result" -- ${cur}) )
|
||||
;;
|
||||
|
||||
copyfrom|copyto)
|
||||
|
||||
Reference in New Issue
Block a user