Skip to content

Commit

Permalink
Add ripgrep as a commander method (#1851)
Browse files Browse the repository at this point in the history
  • Loading branch information
ska2342 committed Jul 13, 2023
1 parent 31b8715 commit 971cd5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 4 additions & 0 deletions projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 971cd5c

Please sign in to comment.