Doc for fuzzy search syntax?

Is there a doc for the full fuzzy search syntax?

What I could find says that is “based on” fzf syntax, but it is definitely not equilalent: e.g., in fzf 'ss' searches for exact matches of ss as a full word (i.e., it would match ss foo but not ssh foo, but in atuin it is not supported.

Does this cover what you’re looking for? Config | Atuin Docs

we’ve basically tried to implement it in sql, so it’s close but not the same. Sadly there is no libfzf, and anything similar we have found only supports building indices on the fly

you might prefer

search_mode = "fulltext"
1 Like

Yes! Is that new or did I just miss it?

we’ve basically tried to implement it in sql, so it’s close but not the same. Sadly there is no libfzf, and anything similar we have found only supports building indices on the fly

OK, makes sense, thanks. I guess no word-boundary functionality in sqllite?