diff options
| author | V.Sannikov <vsannikov@github.com> | 2023-02-21 17:56:33 +0300 |
|---|---|---|
| committer | V.Sannikov <vsannikov@github.com> | 2023-02-21 17:56:33 +0300 |
| commit | 9fa28becbaad71ef25675f64eb6c19b2351faf86 (patch) | |
| tree | 1177f3e0407a8b8cc268a3cce04701ddd9d5e2b1 /src/_virtualbox | |
| parent | Merge pull request #997 from zsh-users/support-flutter-build-completion (diff) | |
| download | zsh-completions-9fa28becbaad71ef25675f64eb6c19b2351faf86.tar zsh-completions-9fa28becbaad71ef25675f64eb6c19b2351faf86.tar.gz zsh-completions-9fa28becbaad71ef25675f64eb6c19b2351faf86.tar.bz2 zsh-completions-9fa28becbaad71ef25675f64eb6c19b2351faf86.tar.lz zsh-completions-9fa28becbaad71ef25675f64eb6c19b2351faf86.tar.xz zsh-completions-9fa28becbaad71ef25675f64eb6c19b2351faf86.tar.zst zsh-completions-9fa28becbaad71ef25675f64eb6c19b2351faf86.zip | |
Fixed `vboxmanage closemedium` redundant parameters completion:
the command takes not more than two positional parameters.
Diffstat (limited to 'src/_virtualbox')
| -rw-r--r-- | src/_virtualbox | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_virtualbox b/src/_virtualbox index da08903..1d37a35 100644 --- a/src/_virtualbox +++ b/src/_virtualbox @@ -172,7 +172,7 @@ _vboxmanage() { _arguments \ '--delete[Deletes the image file]' \ '1:type:(disk dvd floppy)' \ - '*:file:_files' \ + '2:file:_files' \ && ret=0 ;; (storageattach) |
