fix(fzf): lowercase symbols

This commit is contained in:
Folke Lemaitre 2024-06-11 07:44:32 +02:00
parent ba3aec7b48
commit d1d24fa077
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -86,7 +86,7 @@ return {
return "TroubleIcon" .. s return "TroubleIcon" .. s
end, end,
symbol_fmt = function(s) symbol_fmt = function(s)
return s .. "\t" return s:lower() .. "\t"
end, end,
child_prefix = false, child_prefix = false,
}, },