fix: add no require git to rg command backend #4

Merged
AdeAttwood merged 2 commits from adeattwood/rg-command-update into 0.x 2024-12-14 13:37:26 +00:00
Showing only changes of commit 0f364c140d - Show all commits

View file

@ -5,7 +5,7 @@ local rg = {
command = "IvyRg", command = "IvyRg",
description = "Run ripgrep to search for content in files", description = "Run ripgrep to search for content in files",
keymap = "<leader>/", keymap = "<leader>/",
items = utils.command_finder "rg --vimgrep --", items = utils.command_finder "rg --no-require-git --max-columns 200 --vimgrep --",
callback = utils.vimgrep_action(), callback = utils.vimgrep_action(),
} }