Variable: gnus-search-namazu-switches
gnus-search-namazu-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 namazu.
The switches -q, -a, and -s are always used, very few other switches
make any sense in this context.
Note that this should be a list. I.e., do NOT use the following:
(setq gnus-search-namazu-switches "-i -w") ; wrong
Instead, use this:
(setq gnus-search-namazu-switches '("-i" "-w"))
This variable can also be set per-server.
This variable was added, or its default value changed, in Emacs 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-search.el.gz
(defcustom gnus-search-namazu-switches '()
"A list of strings, to be given as additional arguments to namazu.
The switches `-q', `-a', and `-s' are always used, very few other switches
make any sense in this context.
Note that this should be a list. I.e., do NOT use the following:
(setq gnus-search-namazu-switches \"-i -w\") ; wrong
Instead, use this:
(setq gnus-search-namazu-switches \\='(\"-i\" \"-w\"))
This variable can also be set per-server."
:type '(repeat string)
:version "28.1")