From 25384d1507a28f9d4aca94777394aef5e7eb475d Mon Sep 17 00:00:00 2001 From: Nydragon Date: Wed, 30 Oct 2024 17:43:48 +0100 Subject: [PATCH] feat: drop telescope find_files in favour of file_browser --- lua/which-key-config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/which-key-config.lua b/lua/which-key-config.lua index 984df8f..6789d19 100644 --- a/lua/which-key-config.lua +++ b/lua/which-key-config.lua @@ -5,7 +5,7 @@ wk.add({ { "c", desc = "NerdCommenter" }, { "f", desc = "Telescope - Finder" }, { "fb", "Telescope buffers", desc = "Find Open Buffers" }, - { "ff", "Telescope find_files", desc = "Find File" }, + { "ff", require("telescope").extensions.file_browser.file_browser, desc = "Find File" }, { "fg", "Telescope live_grep", desc = "Live Grep" }, { "fh", "Telescope help_tags", desc = "Find Help" }, { "fi", "Telescope builtin", desc = "Search all Telescope builtins" },