aboutsummaryrefslogtreecommitdiffstats
path: root/src/_virtualbox
Commit message (Collapse)AuthorAgeFilesLines
* Fix [virtualbox][vboxmanage controlvm] subcommand completion order and regex ↵SuCicada2025-09-221-3/+3
| | | | are incorrect
* fix typosJörg Thalheim2024-12-221-2/+2
|
* Avoid defining local variable optionsShohei YOSHIDA2023-08-171-2/+2
| | | | | zsh has the built in variable 'options'. zsh sometimes behaves weirdly when there is a local variable that is named 'options'
* Merge pull request #1000 from vsannikov/fix-virtualbox-mediumShohei YOSHIDA2023-02-221-6/+6
|\ | | | | Fix virtualbox medium-related commands
| * Fix `vboxmanage` medium-related commands parameters:V.Sannikov2023-02-211-5/+5
| | | | | | | | | | These commands accept a file name (or an UUID), not a VM name, as a positional parameter.
| * Fixed `vboxmanage closemedium` redundant parameters completion:V.Sannikov2023-02-211-1/+1
| | | | | | | | the command takes not more than two positional parameters.
* | Fix misleading description for `vboxmanage --ostype` valuesV.Sannikov2023-02-211-1/+1
| |
* | Fix `--ostype` argument of `vboxmanage createvm` commandV.Sannikov2023-02-211-1/+1
|/
* Fix typosDimitris Apostolou2023-01-041-2/+2
|
* Update author listShohei YOSHIDA2022-12-251-0/+1
|
* Add dhcpserver subcommand completionShohei YOSHIDA2022-12-251-1/+70
|
* Reduce functionsShohei YOSHIDA2022-12-251-90/+74
|
* Add hostonlynet subcommand completionShohei YOSHIDA2022-12-251-1/+37
|
* Add hostonlyif subcommand completionShohei YOSHIDA2022-12-251-1/+29
|
* Add metrics subcommand completionShohei YOSHIDA2022-12-251-1/+48
|
* Add debugvm subcommand completionShohei YOSHIDA2022-12-251-1/+65
|
* ADd guestcontrol subcommand completionShohei YOSHIDA2022-12-251-1/+138
|
* Add natnetwork subcommand completionShohei YOSHIDA2022-12-251-1/+40
|
* Implement sharedfolder subcommand completionShohei YOSHIDA2022-12-241-2/+39
|
* Add usbdevsource subcommand completionShohei YOSHIDA2022-12-241-1/+27
|
* Add extpack subcommand completionShohei YOSHIDA2022-12-241-3/+33
|
* Add modifynvram subcommand completionShohei YOSHIDA2022-12-241-1/+46
|
* Add updatecheck subcommand completionShohei YOSHIDA2022-12-241-1/+38
|
* Add usbfilter subcommand completionShohei YOSHIDA2022-12-241-1/+41
|
* Add guestproperty subcommand completionShohei YOSHIDA2022-12-241-2/+46
|
* Add cloud subcommand completionShohei YOSHIDA2022-12-231-1/+197
|
* Add snapshot subcommand completionShohei YOSHIDA2022-12-231-1/+43
|
* Add unattended subcommand completionShohei YOSHIDA2022-12-231-1/+54
|
* Add cloudprofile subcommand completionShohei YOSHIDA2022-12-231-2/+38
|
* Add mediumio subcommand completionShohei YOSHIDA2022-12-231-1/+57
|
* Add bandwidthctl subcommand completionShohei YOSHIDA2022-12-231-1/+45
|
* Implement encryptvm subcommandShohei YOSHIDA2022-12-221-331/+372
|
* Add set property completionShohei YOSHIDA2022-12-221-2/+20
|
* Update virtualbox completionShohei YOSHIDA2022-12-141-279/+425
| | | | | | | - Fix broken option completion - Format - Update subcommands - Add TODO comments in unimplemented subcommands
* Update linksShohei YOSHIDA2022-11-231-1/+1
|
* Utilize grep -E instead of deprecated/obsolescent egreprtisdale2022-09-121-3/+3
|
* Add list natnets and natnetwork optionPedro A. Aranda Gutierrez2022-01-251-3/+2
|
* Add initial support for natnetwork subcommandPedro A. Aranda Gutierrez2022-01-251-0/+10
|
* Add function to list natnetworksPedro A. Aranda Gutierrez2022-01-251-0/+8
|
* Add (unCamelised) vboxmanage for LinuxPedro A. Aranda Gutierrez2022-01-251-1/+1
|
* Update medium related commands for VBoxManagekiendang2018-11-171-6/+6
|
* Remove license header from compdefs I wrote (switching to the Zsh license)Julien Nicoulaud2017-10-191-22/+0
|
* Add VBoxManager modifyhd auto-complete.Werner Beroux2014-03-221-0/+10
|
* Move modelines to end of fileAaron Schrab2012-08-231-3/+8
| | | | | | | | | | | | | | | | | | | | | | Having a vim modeline or emacs local variable line somewhere in the middle of the file isn't really helpful. By default, vim will only check the first and last 5 lines of a file for a modeline (assuming the modeline option is enabled). Emacs is even more strict about the type of local variable line that was in use, it will only check the first line of the file or the second line if the first line specifies a script interpreter (which isn't the case here). Move the vim modeline to the end of the file so that it can actually be found by vim but is out of the way for editing. For emacs more work is required, convert that to the more verbose Local Variables syntax which emacs will look for starting 3000 characters from the end of the file. Also there is no zsh mode for emacs (according to zsh-users/zsh-completions#75), use the "Shell-Script" mode instead. This seems to automatically detect that the files are for zsh. I'm not an emacs user, so I haven't tested that portion much. But, this does at least improve the syntax highlighting there.
* [BREAKING CHANGE] Move compdefs to own directory (to ease packaging andJulien Nicoulaud2012-08-011-0/+312
avoid bloating users fpath with unneeded files such as README.md)