branch: master
commit a5ad866ffb77073e91e0fb621dbe21be7aab3052
Merge: 0afa685 42fba8d
Author: John Wiegley <[email protected]>
Commit: John Wiegley <[email protected]>
Merge pull request #6 from mstrlu/fix-def-use-native-commands
* dired-async.el: Add a defvar for `dired-async-use-native-commands'
---
dired-async.el | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dired-async.el b/dired-async.el
index 9c2d10c..689df8f 100644
--- a/dired-async.el
+++ b/dired-async.el
@@ -94,6 +94,9 @@
Each operation that succeeds will start the next member of the queue. If an
error occurs at any point, the rest of the queue is flushed.")
+(defvar dired-async-use-native-commands nil
+ "If non-nil, use native commands like `rm' and `mv' for file operations.
Otherwise use elisp.")
+
(defun dired-async-highlight-file (file)
(save-excursion
(dired-goto-file file)