From 3a709bb45027f57eb519d6086091f68037843a51 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 15 Jun 2023 09:43:10 +0200 Subject: [PATCH] nvim: Replace live grep key chord with fw Moved the old, a little more cumbersome, mapping fF to be fw instead to start live grepping with telescope. --- nvim/.config/nvim/lua/maps.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/maps.lua b/nvim/.config/nvim/lua/maps.lua index 2597fd5..c57495e 100644 --- a/nvim/.config/nvim/lua/maps.lua +++ b/nvim/.config/nvim/lua/maps.lua @@ -155,7 +155,7 @@ map('n', 'fh', ":lua require 'telescope.builtin'.find_files({hidden=true})", { desc = 'find hidden files' }) -- general full-text search in cwd with rg -map('n', 'fF', ":lua require 'telescope.builtin'.live_grep()", +map('n', 'fw', ":lua require 'telescope.builtin'.live_grep()", { desc = 'grep search' }) -- git status