branch: elpa/projectile commit 971cd5c4f25ff1f84ab7e8337ffc7f89f67a1b52 Author: Stefan Kamphausen <ska2...@users.noreply.github.com> Commit: GitHub <nore...@github.com>
Add ripgrep as a commander method (#1851) --- CHANGELOG.md | 1 + projectile.el | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d6f7c6523..733c45fc7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### New features +* [#1851](https://github.com/bbatsov/projectile/pull/1851): Add ripgrep to `projectile-commander` with binding `?p`. * [#1833](https://github.com/bbatsov/projectile/pull/1833): Add Julia project discovery. * [#1828](https://github.com/bbatsov/projectile/pull/1828): Add Nimble-based Nim project discovery. * Add elm project type. diff --git a/projectile.el b/projectile.el index 501cc4e02d..cb8808693b 100644 --- a/projectile.el +++ b/projectile.el @@ -5753,6 +5753,10 @@ is chosen." "Run grep on project." (projectile-grep)) + (def-projectile-commander-method ?p + "Run ripgrep on project." + (call-interactively #'projectile-ripgrep)) + (def-projectile-commander-method ?a "Run ag on project." (call-interactively #'projectile-ag))