Variable: speedbar-query-confirmation-method

speedbar-query-confirmation-method is a customizable variable defined in speedbar.el.gz.

Value

all

Documentation

Control querying for file operations.

The value all means to always query before file operations. The value none-but-delete means to not query before any file operations, except before a file deletion.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defcustom speedbar-query-confirmation-method 'all
  "Control querying for file operations.
The value `all' means to always query before file operations.
The value `none-but-delete' means to not query before any file
operations, except before a file deletion."
  :group 'speedbar
  :type '(radio (const :tag "Always Query before some file operations."
		       all)
		(const :tag "Never Query before file operations, except for deletions."
		       none-but-delete)
;;;;		(const :tag "Never Every Query."
;;;;		       none)
		))