>From 4f311034fac33698534090c35fb7e662f1cef47a Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Thu, 9 Dec 2021 17:37:44 +0100 Subject: [PATCH 4/4] Bind modifier-less isearch commands in the completion buffer * lisp/simple.el (completion-list-mode-map): Bind isearch-forward and isearch-forward-regexp --- lisp/simple.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/simple.el b/lisp/simple.el index 5ca8142548..cb2d4cd7f4 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -8982,6 +8982,8 @@ completion-list-mode-map (define-key map [right] 'next-completion) (define-key map [?\t] 'next-completion) (define-key map [backtab] 'previous-completion) + (define-key map "s" #'isearch-forward) + (define-key map "S" #'isearch-forward-regexp) (define-key map "n" 'next-completion) (define-key map "p" 'previous-completion) (define-key map "\M-g\M-c" 'switch-to-minibuffer) -- 2.34.0