Variable: nnir-notmuch-additional-switches

nnir-notmuch-additional-switches is a customizable variable defined in nnir.el.gz.

Value

nil

Documentation

A list of strings, to be given as additional arguments to notmuch.

Note that this should be a list. I.e., do NOT use the following:
    (setq nnir-notmuch-additional-switches "-i -w") ; wrong
Instead, use this:
    (setq nnir-notmuch-additional-switches '("-i" "-w"))

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/nnir.el.gz
(defcustom nnir-notmuch-additional-switches '()
  "A list of strings, to be given as additional arguments to notmuch.

Note that this should be a list.  I.e., do NOT use the following:
    (setq nnir-notmuch-additional-switches \"-i -w\") ; wrong
Instead, use this:
    (setq nnir-notmuch-additional-switches \\='(\"-i\" \"-w\"))"
  :version "24.1"
  :type '(repeat (string)))