summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrahmajit Das <listout@listout.xyz>2025-06-11 19:21:39 +0530
committerBrahmajit Das <listout@listout.xyz>2025-06-11 19:21:39 +0530
commitdea7a63999b920b8e5718c48578d22cfe51b3929 (patch)
tree993dfffce652128e8b53889e0120fc34e61c1d92
parentf521648d80249ada3ff4bbc8fa2b1b7b9e0c18e3 (diff)
plugin: keymaps: use RG instead of rg
Relaunch ripgrep on every keystroke Signed-off-by: Brahmajit Das <listout@listout.xyz>
-rw-r--r--plugin/keymaps.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/keymaps.lua b/plugin/keymaps.lua
index 0389aef..ec8e436 100644
--- a/plugin/keymaps.lua
+++ b/plugin/keymaps.lua
@@ -36,7 +36,7 @@ map('t', 'C-w', '<C-\\><C-n><C-w>')
map('n', '<leader>B', ':Buffers<CR>') -- FZF show open buffers
map('n', '<leader>F', ':Files<CR>') -- FZF show files
-map('n', '<leader>A', ':Rg<CR>') -- FZF call ripgrep
+map('n', '<leader>A', ':RG<CR>') -- FZF call ripgrep, relaunch ripgrep on every keystroke
map('n', '<leader>C', ':Commits<CR>') -- FZF show git commits
map('n', '<leader>M', ':Maps<CR>') -- FZF show normal mode mappings