Skip to content

Commit 3913106

Browse files
committed
Merge pull request ohmyzsh#2787 from irnnr/plugin-vagrant
Support new Vagrant commands
2 parents eafd5f3 + 8ed8005 commit 3913106

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

plugins/vagrant/_vagrant

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,24 @@
66
local -a _1st_arguments
77
_1st_arguments=(
88
'box:Box commands'
9+
'connect:Connects to a shared, remote Vagrant environment'
910
'destroy:Destroys the vagrant environment'
11+
'global-status:Reports the status of all active Vagrant environments on the system'
1012
'halt:Halts the currently running vagrant environment'
1113
'init:[box_name] [box_url] Initializes current folder for Vagrant usage'
14+
'login:Authenticates against a Vagrant Cloud server to access protected boxes'
1215
'package:Packages a vagrant environment for distribution'
1316
'plugin:Plugin commands'
1417
'provision:Run the provisioner'
1518
'reload:Reload the vagrant environment'
1619
'resume:Resumes a suspend vagrant environment'
20+
'share:Shares the Vagrant environment and allows remote access'
1721
'ssh:SSH into the currently running environment'
18-
'ssh-config:outputs .ssh/config valid syntax for connecting to this environment via ssh.'
19-
'status:Shows the status of the current Vagrant environment.'
22+
'ssh-config:outputs .ssh/config valid syntax for connecting to this environment via ssh'
23+
'status:Shows the status of the current Vagrant environment'
2024
'suspend:Suspends the currently running vagrant environment'
2125
'up:Creates the vagrant environment'
26+
'version:Prints the currently installed Vagrant version and checks for new updates'
2227
'--help:[TASK] Describe available tasks or one specific task'
2328
'--version:Prints the Vagrant version information'
2429
)

0 commit comments

Comments
 (0)