From e8f2b72a1376eadf47817ce157f4e4f570e17d1d Mon Sep 17 00:00:00 2001 From: Andre Freitas Date: Thu, 26 Oct 2023 18:00:33 +0100 Subject: [PATCH] fix(telescope): update description --- lua/lazyvim/util/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/util/telescope.lua b/lua/lazyvim/util/telescope.lua index 75ffa602..f8da00ff 100644 --- a/lua/lazyvim/util/telescope.lua +++ b/lua/lazyvim/util/telescope.lua @@ -43,7 +43,7 @@ function M.telescope(builtin, opts) end opts.attach_mappings = function(_, map) -- opts.desc is overridden by telescope, until it's changed there is this fix - map("i", "", open_cwd_dir, { desc = "Open root directory" }) + map("i", "", open_cwd_dir, { desc = "Open cwd directory" }) return true end end