unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Juri Linkov <juri@linkov.net>
To: emacs-devel@gnu.org
Subject: History completion
Date: Wed, 08 Dec 2021 20:54:40 +0200	[thread overview]
Message-ID: <86mtlbvuq2.fsf@mail.linkov.net> (raw)

Wouldn't it be nice to allow completion on previous input
in the minibuffer.

There are two unbound commands ‘previous-complete-history-element’ and
‘next-complete-history-element’ but their completion is limited
only to the beginnings of history items.

So tried to set the minibuffer completion table to the history list:

#+begin_src emacs-lisp
(defun minibuffer-setup-history-completions ()
  (unless (or minibuffer-completion-table minibuffer-completion-predicate)
    (setq-local minibuffer-completion-table (symbol-value minibuffer-history-variable))))
(add-hook 'minibuffer-setup-hook 'minibuffer-setup-history-completions)
#+end_src

It works nicely with ‘icomplete-mode’ and ‘fido-vertical-mode’
by automatically displaying completions from the history
depending on input in the minibuffer.  But this also has drawbacks:
while typing a completely new command that doesn't exist in the history,
it permanently says at the end of the minibuffer: [No matches]

So instead of this, tried to show history completions only after
typing a special key.  TAB can't be reused because in some minibuffers
such as ‘M-!’ (shell-command), TAB completes the command/file names.

There is ‘C-tab’ bound to file-cache-minibuffer-complete.
When file-cache is not used, then ‘C-tab’ could be rebound
to a command that completes on the minibuffer history:

#+begin_src emacs-lisp
;; Adapted from ‘minibuffer-complete’:
(defun minibuffer-complete-history ()
  (interactive)
  (completion-in-region (minibuffer--completion-prompt-end) (point-max)
                        (symbol-value minibuffer-history-variable)
                        nil))
(define-key minibuffer-local-map [C-tab] 'minibuffer-complete-history)
#+end_src



             reply	other threads:[~2021-12-08 18:54 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-08 18:54 Juri Linkov [this message]
2021-12-08 20:02 ` History completion André A. Gomes
2021-12-09  6:05   ` Manuel Uberti
2021-12-09 17:12   ` Juri Linkov
2021-12-09 22:52     ` André A. Gomes
2021-12-08 20:52 ` [External] : " Drew Adams
2021-12-09  8:30   ` Daniel Fleischer
2021-12-09 17:16   ` Juri Linkov
2021-12-09 18:13     ` [External] : " Drew Adams
2021-12-09  7:51 ` Manuel Uberti
2021-12-09 17:18   ` Juri Linkov
2021-12-09 17:40     ` Manuel Uberti
2022-06-09  7:01 ` Juri Linkov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=86mtlbvuq2.fsf@mail.linkov.net \
    --to=juri@linkov.net \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).