mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(dired-recursive-copies): Moved from dired-aux.el.
This commit is contained in:
parent
5e684428e0
commit
fe02ba0764
1 changed files with 13 additions and 0 deletions
|
|
@ -3153,6 +3153,19 @@ To be called first in body of `dired-sort-other', etc."
|
|||
|
||||
;;;; Drag and drop support
|
||||
|
||||
(defcustom dired-recursive-copies nil
|
||||
"*Decide whether recursive copies are allowed.
|
||||
nil means no recursive copies.
|
||||
`always' means copy recursively without asking.
|
||||
`top' means ask for each directory at top level.
|
||||
Anything else means ask for each directory."
|
||||
:type '(choice :tag "Copy directories"
|
||||
(const :tag "No recursive copies" nil)
|
||||
(const :tag "Ask for each directory" t)
|
||||
(const :tag "Ask for each top directory only" top)
|
||||
(const :tag "Copy directories without asking" always))
|
||||
:group 'dired)
|
||||
|
||||
(defun dired-dnd-test-function (window action types)
|
||||
"The test function for drag and drop into dired buffers.
|
||||
WINDOW is where the mouse is when this function is called. It may be a frame
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue