From 9b1c21a409beb349d97fe4e9b9a0a9302ce68c9a Mon Sep 17 00:00:00 2001 From: fREW Schmidt Date: Mon, 2 Apr 2018 04:43:41 -0700 Subject: Get rid of some silly copy pasta (#3187) Said gem instead of vagrant --- plugins/vagrant/_vagrant | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/vagrant') diff --git a/plugins/vagrant/_vagrant b/plugins/vagrant/_vagrant index c5335e72e..a32347daa 100644 --- a/plugins/vagrant/_vagrant +++ b/plugins/vagrant/_vagrant @@ -81,7 +81,7 @@ __vagrant-box () case $state in (command) - _describe -t commands "gem subcommand" _box_arguments + _describe -t commands "vagrant subcommand" _box_arguments return ;; @@ -110,7 +110,7 @@ _arguments -C \ case $state in (command) - _describe -t commands "gem subcommand" _1st_arguments + _describe -t commands "vagrant subcommand" _1st_arguments return ;; -- cgit v1.2.3-70-g09d2 From 3db25d578ac8c0f4c3ca96a4242ba553f561557d Mon Sep 17 00:00:00 2001 From: Michal Mazur Date: Tue, 2 Oct 2018 15:56:50 -0400 Subject: vagrant: fix typo in completion (#5846) --- plugins/vagrant/_vagrant | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/vagrant') diff --git a/plugins/vagrant/_vagrant b/plugins/vagrant/_vagrant index a32347daa..a99a8f0e7 100644 --- a/plugins/vagrant/_vagrant +++ b/plugins/vagrant/_vagrant @@ -22,7 +22,7 @@ _1st_arguments=( 'push:Deploys code in this environment to a configured destination' 'rdp:Connects to machine via RDP' 'reload:Reload the vagrant environment' - 'resume:Resumes a suspend vagrant environment' + 'resume:Resumes a suspended vagrant environment' 'rsync:Syncs rsync synced folders to remote machine' 'rsync-auto:Syncs rsync synced folders automatically when files change' 'share:Shares your Vagrant environment with anyone in the world' -- cgit v1.2.3-70-g09d2 From b231840d95a57de6173bbf205a9b5808766f53e3 Mon Sep 17 00:00:00 2001 From: Bjorn Stange Date: Thu, 4 Oct 2018 07:07:47 -0400 Subject: vagrant: add README (#7215) --- plugins/vagrant/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 plugins/vagrant/README.md (limited to 'plugins/vagrant') diff --git a/plugins/vagrant/README.md b/plugins/vagrant/README.md new file mode 100644 index 000000000..5978c2f53 --- /dev/null +++ b/plugins/vagrant/README.md @@ -0,0 +1,9 @@ +# Vagrant plugin + +This plugin adds completion for [Vagrant](https://www.vagrantup.com/) + +To use it, add `vagrant` to the plugins array in your zshrc file: + +```zsh +plugins=(... vagrant) +``` -- cgit v1.2.3-70-g09d2 From ca5bbd7526f19d5694ed54422ba99ba22e7c56c8 Mon Sep 17 00:00:00 2001 From: Sandra Parsick Date: Sun, 7 Oct 2018 18:16:49 +0200 Subject: #7175 improve vagrant readme (#7247) --- plugins/vagrant/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins/vagrant') diff --git a/plugins/vagrant/README.md b/plugins/vagrant/README.md index 5978c2f53..f6ea87b0e 100644 --- a/plugins/vagrant/README.md +++ b/plugins/vagrant/README.md @@ -1,9 +1,10 @@ # Vagrant plugin -This plugin adds completion for [Vagrant](https://www.vagrantup.com/) +This plugin adds autocompletion for [Vagrant](https://www.vagrantup.com/) commands, task names, box names and built-in handy documentation. To use it, add `vagrant` to the plugins array in your zshrc file: ```zsh plugins=(... vagrant) ``` + -- cgit v1.2.3-70-g09d2