Variable: speedbar-query-confirmation-method
speedbar-query-confirmation-method is a customizable variable defined
in speedbar.el.gz.
Value
all
Documentation
Query control for file operations.
The all flag means to always query before file operations.
The none-but-delete flag 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
"Query control for file operations.
The `all' flag means to always query before file operations.
The `none-but-delete' flag 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)
))