branch: externals/hyperbole commit 09032d90b4b4816ad4803bd8f69b7bc1d8c6aebd Author: Bob Weiner <bob.wei...@duffandphelps.com> Commit: Bob Weiner <bob.wei...@duffandphelps.com>
Disable minibuffer-completion-confirm while processing key series --- hib-kbd.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hib-kbd.el b/hib-kbd.el index 4545a90..a75706f 100644 --- a/hib-kbd.el +++ b/hib-kbd.el @@ -134,7 +134,8 @@ Returns t if KEY-SERIES has a binding, else nil." ;; Disable helm while processing M-x commands; helm ;; gobbles final RET key. Counsel works without modification. (let ((orig-binding (global-key-binding [?\M-x])) - (helm-flag (and (boundp 'helm-mode) helm-mode))) + (helm-flag (and (boundp 'helm-mode) helm-mode)) + (minibuffer-completion-confirm)) (unwind-protect (progn (when helm-flag (helm-mode -1))