|
From: | Juri Linkov |
Subject: | Re: feature/completions-highlight-modifications e3c5b99 3/6: Add completions-highlight-mode initial implementation. |
Date: | Wed, 18 Nov 2020 21:30:27 +0200 |
User-agent: | Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (x86_64-pc-linux-gnu) |
> What the default completions implementation is still missing > is a command/key to insert the selected completion > from the the *Completions* buffer to the minibuffer > without exiting the minibuffer. Actually this is easily customizable by such snippet, so no problem. #+begin_src emacs-lisp (defun choose-completion-no-auto-exit () (interactive) (let ((completion-no-auto-exit t)) (call-interactively 'choose-completion))) (define-key completion-list-mode-map [C-return] 'choose-completion-no-auto-exit) #+end_src
[Prev in Thread] | Current Thread | [Next in Thread] |