From 6b8f0126a579062ee58bf67b296c09bc98f38f78 Mon Sep 17 00:00:00 2001 From: rubikitch Date: Mon, 28 Nov 2016 16:42:05 +0900 Subject: [PATCH] anything.el: anything-select-with-shortcut-internal: Bugfix: handle action buffer --- anything.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/anything.el b/anything.el index 687f46a..a07fe99 100644 --- a/anything.el +++ b/anything.el @@ -3085,7 +3085,9 @@ to mark candidates." (self-insert-command 1)) (goto-char (overlay-start overlay)) (anything-mark-current-line) - (anything-select-nth-action action-index)))) + (if (anything-action-window) + (anything-exit-minibuffer) + (anything-select-nth-action action-index))))) (self-insert-command 1))) (defun anything-select-with-prefix-shortcut () -- 2.11.4.GIT