Tip: Press Enter to select the highlighted result, or use arrow keys to navigate. If your query is a full first word (e.g., "vivi"), exact first-word matches are prioritized.
Use
↑↓ to navigate, Enter to select
{% if candidates %}
Top matches
{% if count is defined %}{{ count }} result{% if count != 1 %}s{% endif %}{% else %}{{ (candidates|length) if candidates else 0 }} results{% endif %}
{% for name, score, colors in candidates %}
{{ name }}
match {{ score }}%
{% if colors %}
{% for c in colors %}
{{ c }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if (query is defined and query and (not candidates or (candidates|length == 0))) and not inspect %}
No results for “{{ query }}”. Try a shorter name or a different spelling.