summaryrefslogtreecommitdiff
path: root/helm.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2016-11-07 09:47:08 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2016-11-07 09:47:08 +0100
commitc8d2db8b89a2a94e3409c358afccd00e9a15e6a9 (patch)
treec81229f0697713066524e4643fc26d8e803fb06e /helm.el
parent37ba1121872b16ed79b1c9978431a50b52f8613e (diff)
Disable PA in action buffer for now.
* helm.el (helm-show-action-buffer): Do it, need to fix it with follow enabled first.
Diffstat (limited to 'helm.el')
-rw-r--r--helm.el8
1 files changed, 2 insertions, 6 deletions
diff --git a/helm.el b/helm.el
index 216c1c7a..61bdfaa4 100644
--- a/helm.el
+++ b/helm.el
@@ -3648,12 +3648,8 @@ If action buffer is selected, back to the helm buffer."
(helm-build-sync-source "Actions"
:volatile t
:nomark t
- :persistent-action (lambda (_candidate)
- (pcase (helm-get-selection helm-action-buffer)
- ((pred byte-code-function-p) (ignore))
- ((and fn) (helm-elisp--persistent-help
- fn 'helm-describe-function))))
- :persistent-help "Describe action"
+ :persistent-action (lambda (_candidate) (ignore))
+ :persistent-help "Do nothing"
:keymap 'helm-map
:candidates actions
:mode-line '("Action(s)" "\\<helm-map>\\[helm-select-action]:BackToCands RET/f1/f2/fn:NthAct")