From 16a797df6fb9ee5e96b800760daf33f49cf11e4d Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 7 May 2021 19:42:10 +0530 Subject: [PATCH] nvim: modules: fzf: Use the leader 'fm' mapping for marks --- nvim/.config/nvim/lua/modules/fzf.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/modules/fzf.lua b/nvim/.config/nvim/lua/modules/fzf.lua index 37910bc..4d89c4a 100644 --- a/nvim/.config/nvim/lua/modules/fzf.lua +++ b/nvim/.config/nvim/lua/modules/fzf.lua @@ -18,7 +18,7 @@ remap('n', 'fc', ':BCommits', { noremap = true }) remap('n', 'fC', ':Commits', { noremap = true }) remap('n', 'fh', ':History:', { noremap = true }) remap('n', 'fH', ':History/', { noremap = true }) -remap('n', 'fm', ':Commands', { noremap = true }) +remap('n', 'fm', ':Marks', { noremap = true }) remap('n', 'fo', ':Locate', { noremap = true }) remap('n', 'fk', ':Maps', { noremap = true }) remap('n', 'f/', ':Rg', { noremap = true })