From d1d24fa077add680bc532e08fd68aaa0841a14dc Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 11 Jun 2024 07:44:32 +0200 Subject: [PATCH] fix(fzf): lowercase symbols --- lua/lazyvim/plugins/extras/editor/fzf.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/editor/fzf.lua b/lua/lazyvim/plugins/extras/editor/fzf.lua index 9176ea36..5ed940b2 100644 --- a/lua/lazyvim/plugins/extras/editor/fzf.lua +++ b/lua/lazyvim/plugins/extras/editor/fzf.lua @@ -86,7 +86,7 @@ return { return "TroubleIcon" .. s end, symbol_fmt = function(s) - return s .. "\t" + return s:lower() .. "\t" end, child_prefix = false, },