From a04f6ab28e09d5a9d2b7757304d700263204e532 Mon Sep 17 00:00:00 2001 From: dunix241 Date: Sat, 2 Nov 2024 11:43:25 +0700 Subject: [PATCH] feat(keymaps): wrong mapping --- lua/lazyvim/plugins/extras/editor/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/editor/telescope.lua b/lua/lazyvim/plugins/extras/editor/telescope.lua index 7d5925a4..34c8de4b 100644 --- a/lua/lazyvim/plugins/extras/editor/telescope.lua +++ b/lua/lazyvim/plugins/extras/editor/telescope.lua @@ -102,7 +102,7 @@ return { { k.picker_find_files_cwd, LazyVim.pick("files", { root = false }), desc = "Find Files (cwd)" }, { k.picker_find_git_files, "Telescope git_files", desc = "Find Files (git-files)" }, { k.picker_find_recent_files, "Telescope oldfiles", desc = "Recent" }, - { k.picker_find_files_cwd, LazyVim.pick("oldfiles", { cwd = vim.uv.cwd() }), desc = "Recent (cwd)" }, + { k.picker_find_recent_files_cwd, LazyVim.pick("oldfiles", { cwd = vim.uv.cwd() }), desc = "Recent (cwd)" }, -- git { k.picker_git_commits, "Telescope git_commits", desc = "Commits" }, { k.picker_git_status, "Telescope git_status", desc = "Status" },