mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
Add new vagrant commands (#7455)
* vagrant: Add `cloud` subcommand to completion * vagrant: Add `port` subcommand to completion * vagrant: Add `validate` subcommand to completion
This commit is contained in:
parent
e0ee79f2bc
commit
64976138b6
1 changed files with 5 additions and 2 deletions
|
@ -6,6 +6,7 @@
|
||||||
local -a _1st_arguments
|
local -a _1st_arguments
|
||||||
_1st_arguments=(
|
_1st_arguments=(
|
||||||
'box:Box commands'
|
'box:Box commands'
|
||||||
|
'cloud:Manages everything related to Vagrant Cloud'
|
||||||
'connect:Connects to a remotely shared Vagrant environment'
|
'connect:Connects to a remotely shared Vagrant environment'
|
||||||
'destroy:Destroys the vagrant environment'
|
'destroy:Destroys the vagrant environment'
|
||||||
'docker-logs:Outputs the logs from the Docker container'
|
'docker-logs:Outputs the logs from the Docker container'
|
||||||
|
@ -18,6 +19,7 @@ _1st_arguments=(
|
||||||
'login:Authenticates against a Vagrant Cloud server to access protected boxes'
|
'login:Authenticates against a Vagrant Cloud server to access protected boxes'
|
||||||
'package:Packages a vagrant environment for distribution'
|
'package:Packages a vagrant environment for distribution'
|
||||||
'plugin:Plugin commands'
|
'plugin:Plugin commands'
|
||||||
|
'port:Displays information about guest port mappings'
|
||||||
'provision:Run the provisioner'
|
'provision:Run the provisioner'
|
||||||
'push:Deploys code in this environment to a configured destination'
|
'push:Deploys code in this environment to a configured destination'
|
||||||
'rdp:Connects to machine via RDP'
|
'rdp:Connects to machine via RDP'
|
||||||
|
@ -33,6 +35,7 @@ _1st_arguments=(
|
||||||
'suspend:Suspends the currently running vagrant environment'
|
'suspend:Suspends the currently running vagrant environment'
|
||||||
'snapshot:Used to manage snapshots with the guest machine'
|
'snapshot:Used to manage snapshots with the guest machine'
|
||||||
'up:Creates the vagrant environment'
|
'up:Creates the vagrant environment'
|
||||||
|
'validate:Validates the Vagrantfile'
|
||||||
'version:Prints current and latest Vagrant version'
|
'version:Prints current and latest Vagrant version'
|
||||||
'--help:[TASK] Describe available tasks or one specific task'
|
'--help:[TASK] Describe available tasks or one specific task'
|
||||||
'--version:Prints the Vagrant version information'
|
'--version:Prints the Vagrant version information'
|
||||||
|
@ -54,7 +57,7 @@ __task_list ()
|
||||||
local expl
|
local expl
|
||||||
declare -a tasks
|
declare -a tasks
|
||||||
|
|
||||||
tasks=(box destroy halt init package provision reload resume ssh ssh_config status suspend up version)
|
tasks=(box destroy halt init package port provision reload resume ssh ssh_config status suspend up version)
|
||||||
|
|
||||||
_wanted tasks expl 'help' compadd $tasks
|
_wanted tasks expl 'help' compadd $tasks
|
||||||
}
|
}
|
||||||
|
@ -123,7 +126,7 @@ case $state in
|
||||||
(box)
|
(box)
|
||||||
__vagrant-box
|
__vagrant-box
|
||||||
;;
|
;;
|
||||||
(up|provision|package|destroy|reload|ssh|ssh-config|halt|resume|status)
|
(up|provision|port|package|destroy|reload|ssh|ssh-config|halt|resume|status)
|
||||||
_arguments ':feature:__vm_list'
|
_arguments ':feature:__vm_list'
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue