all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hongyi Zhao <hongyi.zhao@gmail.com>
To: Tassilo Horn <tsdh@gnu.org>
Cc: help-gnu-emacs <help-gnu-emacs@gnu.org>
Subject: Re: Incrementally display the Emacs command list filtered out by the input key words in real-time.
Date: Fri, 2 Jul 2021 23:27:47 +0800	[thread overview]
Message-ID: <CAGP6PO+mS5LgfUhgsOxETddm4LDEv2jFrtdUhP2rbXa57E3zYw@mail.gmail.com> (raw)
In-Reply-To: <87mtr4j2uf.fsf@gnu.org>

On Fri, Jul 2, 2021 at 8:51 PM Tassilo Horn <tsdh@gnu.org> wrote:
>
> Hongyi Zhao <hongyi.zhao@gmail.com> writes:
>
> > I tried the following code snippet posted at
> > <https://emacs.stackexchange.com/questions/13500/fuzzy-completion-style>,
> > but there is no effect at all:
>
> Emacs already has a fuzzy completion style (see the `flex' entry in
> `completion-styles-alist'), no need to copy&paste some 6 year old
> implementation from the internet.
>
> > (add-to-list 'completion-styles-alist
> >              '(naive-fuzzy
> >                completion-naive-fuzzy-try-completion
> >                completion-naive-fuzzy-all-completions
> >                "Simple naive-fuzzy completion, which never alters the
> > string to complete, unless a unique match exists."))
> >
> > ;; (setq-local completion-styles '(naive-fuzzy))
>
> Try (setq completion-styles '(flex)).  But note that the used
> `completion-styles' just defines how the input is matched against the
> things to be completed, i.e., you'll see no visual difference.  See the
> manual at (info "(emacs) Completion Styles").
>
> To have a more visual UI, follow Eli's advice:
>
> >> And maybe try an alternative completion mode, like icompletion-mode.
>
> It is called `icomplete-mode'.
>
> Another very nice UI is the `vertico' package from GNU ELPA.  Other
> popular choices include ivy, selectrum, etc.

Thank you very much for providing me with all kinds of information on
the packages which can achieve this aim. Based on my tries, it seems
that the ivy package, <https://github.com/abo-abo/swiper>, is one of
the most powerful one for this purpose. And the following simple
configuration can achieve the effect described here:

;;;
(straight-use-package
 `(swiper :type git :host github :repo "abo-abo/swiper"
    :pre-build (
               ;("bash" "-c" "cd ~/.emacs.d/straight/repos/swiper")
               ;https://github.com/abo-abo/swiper/issues/2886#issuecomment-860605327
               ("make" "deps")
               ("make" "compile")
               )))

(require 'ivy)
(ivy-mode 1)
(setq ivy-use-virtual-buffers t)
(setq ivy-count-format "(%d/%d) ")
;;;

HY
-- 
Assoc. Prof. Hongyi Zhao <hongyi.zhao@gmail.com>
Theory and Simulation of Materials
Hebei Vocational University of Technology and Engineering
NO. 552 North Gangtie Road, Xingtai, China



  reply	other threads:[~2021-07-02 15:27 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-02  5:22 Incrementally display the Emacs command list filtered out by the input key words in real-time Hongyi Zhao
2021-07-02  6:25 ` Eli Zaretskii
2021-07-02  7:23   ` Hongyi Zhao
2021-07-02 12:40     ` Tassilo Horn
2021-07-02 15:27       ` Hongyi Zhao [this message]
2021-07-02 14:43 ` [External] : " Drew Adams
2021-07-02 15:40   ` Hongyi Zhao
2021-07-03 18:49 ` Marcin Borkowski
2021-07-03 23:39   ` Hongyi Zhao

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

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

  git send-email \
    --in-reply-to=CAGP6PO+mS5LgfUhgsOxETddm4LDEv2jFrtdUhP2rbXa57E3zYw@mail.gmail.com \
    --to=hongyi.zhao@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=tsdh@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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.