unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: arvid-harnack@lavache.com
To: help-gnu-emacs@gnu.org
Subject: Changing completion-style using the minibuffer
Date: Fri, 11 Jun 2021 22:02:05 +0200 (CEST)	[thread overview]
Message-ID: <ea-mime-60c3c13d-e0d-6172dea0@www-7.mailo.com> (raw)

I have the following code to change completion-styles by calling "M-x minibufrp-complt-style".



But would like to change it so that I can go through the four selections using the minibuffer.

What would I need to add exactly to be able to do so ?



(defvar k 1)

(defun minibufrp-complt-style ()
  
  (interactive)
  (pcase k
    (1
       (setq completion-styles '(basic substring))
       (setq k 2))
    (2
       (setq completion-styles '(partial-completion))
       (setq k 3))
    (3
       (setq completion-styles '(initials))
       (setq k 4))
    (4
       (setq completion-styles '(orderless))
       (setq k 1)) ))



             reply	other threads:[~2021-06-11 20:02 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-11 20:02 arvid-harnack [this message]
2021-06-12  2:49 ` Changing completion-style using the minibuffer Jean Louis
2021-06-12 14:27   ` arvid-harnack

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=ea-mime-60c3c13d-e0d-6172dea0@www-7.mailo.com \
    --to=arvid-harnack@lavache.com \
    --cc=help-gnu-emacs@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.
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).