Skip to content

Commit

Permalink
cp-ag, cp-rg: Add ": " at end of prompt
Browse files Browse the repository at this point in the history
This is necessary following a recent commit in
counsel (055f0e3ac1a9f5de50d15940c0a3b65baf8fd6af)

Fixes #112
  • Loading branch information
ericdanan committed Nov 26, 2018
1 parent 7607fb8 commit 2ce0efe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions counsel-projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ is called with a prefix argument."
(projectile-project-root)
options
(projectile-prepend-project-name
(car (split-string counsel-ag-base-command)))))))
(concat (car (split-string counsel-ag-base-command)) ": "))))))

;;* counsel-projectile-rg

Expand Down Expand Up @@ -913,7 +913,7 @@ is called with a prefix argument."
(projectile-project-root)
options
(projectile-prepend-project-name
(car (split-string counsel-rg-base-command)))))))
(concat (car (split-string counsel-rg-base-command)) ": "))))))

;;* counsel-projectile-org-capture

Expand Down

0 comments on commit 2ce0efe

Please sign in to comment.