Function: gnus-summary-save-article-vm

gnus-summary-save-article-vm is an autoloaded, interactive and byte-compiled function defined in gnus-vm.el.gz.

Signature

(gnus-summary-save-article-vm &optional ARG)

Documentation

Append the current article to a vm folder.

If N is a positive number, save the N next articles. If N is a negative number, save the N previous articles. If N is nil and any articles have been marked with the process mark, save those articles instead.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-vm.el.gz
(defun gnus-summary-save-article-vm (&optional arg)
  "Append the current article to a vm folder.
If N is a positive number, save the N next articles.
If N is a negative number, save the N previous articles.
If N is nil and any articles have been marked with the process mark,
save those articles instead."
  (interactive "P" gnus-article-mode gnus-summary-mode)
  (require 'gnus-art)
  (let ((gnus-default-article-saver 'gnus-summary-save-in-vm))
    (gnus-summary-save-article arg)))