diff options
author | cybozuty <ty_c@cybozu.co.jp> | 2012-09-03 15:31:54 +0900 |
---|---|---|
committer | cybozuty <ty_c@cybozu.co.jp> | 2012-09-03 15:31:54 +0900 |
commit | 97ec5de7244c419c4ca484f318e15062910247ba (patch) | |
tree | dd2efd16fa2bfb4c2692146cb26c254d54d98878 | |
parent | 921d2f49ef01acce973980c0aa9c6ffbbd2fbd0b (diff) | |
download | zsh-97ec5de7244c419c4ca484f318e15062910247ba.tar.gz zsh-97ec5de7244c419c4ca484f318e15062910247ba.tar.bz2 zsh-97ec5de7244c419c4ca484f318e15062910247ba.zip |
Rendering the 'vagrant box (remove|repackage)' completion code independant of Vagrant implementation details.
-rw-r--r-- | plugins/vagrant/_vagrant | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/vagrant/_vagrant b/plugins/vagrant/_vagrant index 483b29c53..b161ba2be 100644 --- a/plugins/vagrant/_vagrant +++ b/plugins/vagrant/_vagrant @@ -43,7 +43,7 @@ __task_list () __box_list () { - _wanted application expl 'command' compadd $(command ls -1 $HOME/.vagrant/boxes 2>/dev/null| sed -e 's/ /\\ /g') + _wanted application expl 'command' compadd $(command vagrant box list | sed -e 's/ /\\ /g') } __vagrant-box () |