## Problem - As it is now, search fields require exact matches. - Sometimes it is difficult to search for exact track names. ## Proposal - Use a fuzzy search algorithm for searches fields and the displayed results. - Something like [FZF](https://github.com/junegunn/fzf) may be used. - There are some instructions [here](https://junegunn.github.io/fzf/tips/using-fzf-in-your-program/) for integrating FZF in a Go project. There is also a [Go library for fzf](https://github.com/koki-develop/go-fzf)
Problem
Proposal