diff options
-rw-r--r-- | ui/fuzzy-search-modal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/fuzzy-search-modal.go b/ui/fuzzy-search-modal.go index 8ea6bbb..5d75eaf 100644 --- a/ui/fuzzy-search-modal.go +++ b/ui/fuzzy-search-modal.go @@ -93,7 +93,7 @@ func (fs *FuzzySearchModal) changeHandler(str string) { sort.Sort(fs.matches) fs.results.Clear() for _, match := range fs.matches { - fmt.Fprintf(fs.results, `["%d"]%s[""]\n`, match.Index, match.Target) + fmt.Fprintf(fs.results, `["%d"]%s[""]%s`, match.Index, match.Target, "\n") } fs.parent.Render() fs.results.Highlight(strconv.Itoa(fs.matches[0].Index)) |