update bash completion(snapshot)

This commit is contained in:
Kammy 2016-04-10 12:44:01 +09:00
parent 4157082bf3
commit 67c4de3b81
1 changed files with 6 additions and 1 deletions

View File

@ -53,7 +53,7 @@ __vagrantinvestigate() {
_vagrant() { _vagrant() {
cur="${COMP_WORDS[COMP_CWORD]}" cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}" prev="${COMP_WORDS[COMP_CWORD-1]}"
commands="box connect destroy docker-logs docker-run global-status halt help init list-commands login package plugin provision push rdp reload resume rsync rsync-auto share ssh ssh-config status suspend up version" commands="box connect destroy docker-logs docker-run global-status halt help init list-commands login package plugin provision push rdp reload resume rsync rsync-auto share snapshot ssh ssh-config status suspend up version"
if [ $COMP_CWORD == 1 ] if [ $COMP_CWORD == 1 ]
then then
@ -104,6 +104,11 @@ _vagrant() {
COMPREPLY=($(compgen -W "${commands}" -- ${cur})) COMPREPLY=($(compgen -W "${commands}" -- ${cur}))
return 0 return 0
;; ;;
"snapshot")
snapshot_commands="delete list pop push restore save"
COMPREPLY=($(compgen -W "${snapshot_commands}" -- ${cur}))
return 0
;;
*) *)
;; ;;
esac esac