From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: =?utf-8?Q?=C3=93scar_Fuentes?= Newsgroups: gmane.emacs.help Subject: Re: Switching orderloss off Date: Fri, 11 Jun 2021 03:20:48 +0200 Message-ID: <87tum56vtb.fsf@telefonica.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="12303"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) Cc: help-gnu-emacs@gnu.org To: arvid-harnack@lavache.com Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Fri Jun 11 03:21:27 2021 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lrVrS-00030U-Ur for geh-help-gnu-emacs@m.gmane-mx.org; Fri, 11 Jun 2021 03:21:26 +0200 Original-Received: from localhost ([::1]:35540 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lrVrR-0002Gr-I2 for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 10 Jun 2021 21:21:25 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37948) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lrVr1-0002GU-IO for help-gnu-emacs@gnu.org; Thu, 10 Jun 2021 21:20:59 -0400 Original-Received: from relayout01-redir.e.movistar.es ([86.109.101.201]:29303) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lrVqz-0004lO-22 for help-gnu-emacs@gnu.org; Thu, 10 Jun 2021 21:20:58 -0400 Original-Received: from sky (14.red-79-145-70.dynamicip.rima-tde.net [79.145.70.14]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: 981711563@telefonica.net) by relayout01.e.movistar.es (Postfix) with ESMTPSA id 4G1NMP2WlKzfZYp; Fri, 11 Jun 2021 03:20:49 +0200 (CEST) In-Reply-To: (arvid-harnack@lavache.com's message of "Fri, 11 Jun 2021 02:47:55 +0200 (CEST)") X-TnetOut-Country: IP: 79.145.70.14 | Country: ES X-TnetOut-Information: AntiSPAM and AntiVIRUS on relayout01 X-TnetOut-MsgID: 4G1NMP2WlKzfZYp.AAF20 X-TnetOut-SpamCheck: no es spam, clean X-TnetOut-From: ofv@wanadoo.es X-TnetOut-Watermark: 1623979249.58397@GkWgNuiUxILFLM63z7Wfzw Received-SPF: softfail client-ip=86.109.101.201; envelope-from=ofv@wanadoo.es; helo=relayout01-redir.e.movistar.es X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_SOFTFAIL=0.665 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:130745 Archived-At: arvid-harnack@lavache.com writes: > I am using orderless completion in minibuffer=20 > > > > =C2=A0=C2=A0 (require 'orderless) > > =C2=A0=C2=A0 (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)