Variable: gnus-search-mu-switches
gnus-search-mu-switches is a customizable variable defined in
gnus-search.el.gz.
Value
nil
Documentation
A list of strings, to be given as additional arguments to mu.
Note that this should be a list. I.e., do NOT use the following:
(setq gnus-search-mu-switches "-u -r")
Instead, use this:
(setq gnus-search-mu-switches '("-u" "-r"))
This can also be set per-server.
This variable was added, or its default value changed, in Emacs 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-search.el.gz
(defcustom gnus-search-mu-switches nil
"A list of strings, to be given as additional arguments to mu.
Note that this should be a list. I.e., do NOT use the following:
(setq gnus-search-mu-switches \"-u -r\")
Instead, use this:
(setq gnus-search-mu-switches \\='(\"-u\" \"-r\"))
This can also be set per-server."
:version "29.1"
:type '(repeat string))