From 21e93b2988bcc65a30c1983640deacb49dbe4455 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Fri, 26 Sep 2025 14:53:53 +0200 Subject: [PATCH] [Telescope] Fix overlapping binds --- nvim/lua/plugins/nav/telescope.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nvim/lua/plugins/nav/telescope.lua b/nvim/lua/plugins/nav/telescope.lua index bb38d0e..5672a38 100755 --- a/nvim/lua/plugins/nav/telescope.lua +++ b/nvim/lua/plugins/nav/telescope.lua @@ -39,13 +39,13 @@ return { -- Git opts.desc = "Show git diff" - vim.keymap.set("n", "fgd", builtin.git_status, opts) + vim.keymap.set("n", "fld", builtin.git_status, opts) opts.desc = "Show git commits" - vim.keymap.set("n", "fgc", builtin.git_commits, opts) + vim.keymap.set("n", "flc", builtin.git_commits, opts) opts.desc = "Show git files" - vim.keymap.set("n", "fgf", builtin.git_files, opts) + vim.keymap.set("n", "flf", builtin.git_files, opts) -- Recent Commands opts.desc = "Show recent commands"