help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Switching orderloss off


From: arvid-harnack
Subject: Switching orderloss off
Date: Fri, 11 Jun 2021 03:53:04 +0200 (CEST)

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 via email to

[Prev in Thread] Current Thread [Next in Thread]