
_voxl_send_command(){

	COMPREPLY=()

	if [ "$COMP_CWORD" -eq 1 ]; then
		_voxl_tab_complete_pipes_with_available_control
		return 0
	fi

	if [ "$COMP_CWORD" -eq 2 ]; then
		_voxl_tab_complete_control_commands ${COMP_WORDS[COMP_CWORD-1]}
		return 0
	fi

}

complete -F _voxl_send_command voxl-send-command
