From 5aa85e47e42e86eb854fc42a4f4a46f1de50a56f Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 24 Jan 2023 08:17:57 +0100 Subject: [PATCH] fix(telescope): bind hidden/ignore to ``, `` instead of ` since thats the same as ``. Fixes #117 --- lua/lazyvim/plugins/editor.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index ce1b3492..65ae567e 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -106,10 +106,10 @@ return { [""] = function(...) return require("trouble.providers.telescope").open_with_trouble(...) end, - [""] = function() + [""] = function() Util.telescope("find_files", { no_ignore = true })() end, - [""] = function() + [""] = function() Util.telescope("find_files", { hidden = true })() end, [""] = function(...)