all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: arvid-harnack@lavache.com
To: "Óscar Fuentes" <ofv@wanadoo.es>
Cc: help-gnu-emacs@gnu.org
Subject: Switching orderloss off
Date: Fri, 11 Jun 2021 03:53:04 +0200 (CEST)	[thread overview]
Message-ID: <ea-mime-60c2c200-279f-24500b12@www-7.mailo.com> (raw)
In-Reply-To: <87tum56vtb.fsf@telefonica.net>

Thank you.  Have looked at the various capabilities of "completion-styles" (basic, partial-completion, substring, initials)



Which setup would you find most convenient to use ? Do people customarily fill "completion-styles"



Would it be good to use alternatives rather than a single one ? What sequence would then work nicely?



Thanks


From: Óscar Fuentes <ofv@wanadoo.es>
To: arvid-harnack@lavache.com
Subject: Re: Switching orderloss off
Date: 11/06/2021 03:20:48 Europe/Paris
Cc: help-gnu-emacs@gnu.org

arvid-harnack@lavache.com writes:

> I am using orderless completion in minibuffer 
>
>
>
>    (require 'orderless)
>
>    (setq completion-styles '(orderless))
>
>
>
> But I have no clue how to switch it off should I want to.

Just set it to something else:

(setq completion-styles '(basic))

In case you wish to restore completion-styles to whatever it was before
the change, just store the previous value:

;; Use orderless completion style:
(setq my-previous-completion-styles completion-styles)
(setq completion-styles '(orderless))

;; Go back to the previous completion styles:
(setq completion-styles my-previous-completion-styles)






  reply	other threads:[~2021-06-11  1:53 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-11  0:47 Switching orderloss off arvid-harnack
2021-06-11  1:15 ` Doug Davis
2021-06-11  1:20 ` Óscar Fuentes
2021-06-11  1:53   ` arvid-harnack [this message]
2021-06-11  9:42     ` Philip Kaludercic

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=ea-mime-60c2c200-279f-24500b12@www-7.mailo.com \
    --to=arvid-harnack@lavache.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=ofv@wanadoo.es \
    /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.