This PR makes it possible to customize the helm "actions" that are available when using helm-projectile-grep. So with this, one can add a new action as follows:
(setq helm-projectile-grep-or-ack-actions
(append helm-projectile-grep-or-ack-actions
'("My new action"
my-new-action-function)))
AIUI it is not possible to use the usual helm API helm-add-action-to-source, because helm-projectile-grep-or-ackoverwrites the source.
This PR makes it possible to customize the helm "actions" that are available when using
helm-projectile-grep
. So with this, one can add a new action as follows:AIUI it is not possible to use the usual helm API
helm-add-action-to-source
, becausehelm-projectile-grep-or-ack
overwrites the source.