From fc4c46365a3782981d8292f182272b359d59f006 Mon Sep 17 00:00:00 2001 From: Erlend Hamberg Date: Fri, 21 Sep 2012 15:57:42 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20completion=20of=20=E2=80=9Cvagrant=20ssh-?= =?UTF-8?q?config=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The completion for vagrant incorrectly listed “ssh_config” as a command. This should be “ssh-config”. --- src/_vagrant | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_vagrant b/src/_vagrant index 07b69e0..0566631 100644 --- a/src/_vagrant +++ b/src/_vagrant @@ -28,7 +28,7 @@ _1st_arguments=( 'reload:Reload the vagrant environment' 'resume:Resumes a suspend vagrant environment' 'ssh:SSH into the currently running environment' - 'ssh_config:outputs .ssh/config valid syntax for connecting to this environment via ssh.' + 'ssh-config:outputs .ssh/config valid syntax for connecting to this environment via ssh.' 'status:Shows the status of the current Vagrant environment.' 'suspend:Suspends the currently running vagrant environment' 'up:Creates the vagrant environment'