
#compdef v
_v() {
	local src
	# Send all words up to the word the cursor is currently on
	src=$(/usr/libexec/vlang/vlang complete zsh $(printf "%s\n" ${(@)words[1,$CURRENT]}))
	if [[ $? == 0 ]]; then
		eval ${src}
		#echo ${src}
	fi
}
compdef _v v

