_stne_lock() {
	local cur
	_get_comp_words_by_ref cur

	if [[ $COMP_CWORD == 1 ]]; then
		COMPREPLY=( $(compgen -W "lock unlock" -- "$cur") )
		return 0
	fi
}

complete -F _stne_lock stne-lock
