mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 17:03:39 +02:00
fix(fzf): lowercase symbols
This commit is contained in:
parent
ba3aec7b48
commit
d1d24fa077
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue