From c0fad3cd9e1231b5a1f8726a60b9818ad262a01d Mon Sep 17 00:00:00 2001 From: Michael Heerdegen Date: Wed, 8 Jun 2016 21:19:05 +0200 Subject: [PATCH] Two simple fixes in helm-descbinds-action-transformer Use a timer delay > 0. Don't make action function interactive. Thanks Thierry. --- helm-descbinds.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm-descbinds.el b/helm-descbinds.el index 30b1daf..cea6657 100644 --- a/helm-descbinds.el +++ b/helm-descbinds.el @@ -230,9 +230,9 @@ This function will be called with two arguments KEY and BINDING." "Default action transformer for `helm-descbinds'. Provide a useful behavior for prefix commands." (if (equal (cdr-safe cand) "Prefix Command") - `(("helm-descbinds this prefix" . ,(lambda (cand) (interactive) + `(("helm-descbinds this prefix" . ,(lambda (cand) (run-with-timer - 0 nil + 0.1 nil #'describe-bindings (kbd (car cand)))))) actions))