# Search keywords for select options

Published: September 15, 2026

<img width="640" height="180" class="rounded-2xl border dark:border-zinc-700" src="/img/blog/select-search-keywords.png" alt="A close crop of a Flux select with Fruit selected for the keyword orange, fading softly along the top and sides" />

Flux's searchable select now supports extra search terms with the `keywords` prop. Add it to an option to make that option easier to find without changing its label:

```blade
<flux:select.option value="fruit" keywords="apple orange pear">
    Fruit
</flux:select.option>
```

Now searching for “apple” finds “Fruit”, and “coffee” finds “Drinks”. The labels are still searchable too.

It's useful for abbreviations, alternate names, or related terms your users might reach for. Keywords work with the built-in filtering in searchable listboxes and comboboxes, using the same case-insensitive and accent-insensitive matching as labels.

[Try it in the select docs →](https://fluxui.dev/components/select#search-keywords)
