diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d6f7c652..733c45fc7 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 501cc4e02..cb8808693 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))