Skip to content

Commit 128eb83

Browse files
author
Thierry Volpiatto
committed
Fix pkg file and instructions in dired-async.
1 parent 8bb464f commit 128eb83

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

async-pkg.el

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
;;; async-pkg.el
22

3-
(define-package "async" "1.4" "Asynchronous processing in Emacs" 'nil)
3+
(define-package "async" "1.4"
4+
"Asynchronous processing in Emacs"
5+
'((emacs "24")
6+
(cl-lib "0.5"))
7+
:url "https://github.com/jwiegley/emacs-async")
48

59
;; Local Variables:
610
;; no-byte-compile: t

dired-async.el

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
;;; Commentary:
2828

2929
;; This file provide a redefinition of `dired-create-file' function,
30-
;; which must be loaded *after* dired-aux.el, performs copies,
31-
;; moves and all what is handled by `dired-create-file' in the background
32-
;; using a slave Emacs process, by means of the async.el module.
30+
;; performs copies, moves and all what is handled by `dired-create-file'
31+
;; in the background using a slave Emacs process,
32+
;; by means of the async.el module.
3333
;; To use it, put this in your .emacs:
34-
;;
35-
;; (eval-after-load "dired-aux"
36-
;; '(require 'dired-async))
37-
;;
38-
;;
34+
35+
;; (dired-async-mode 1)
36+
37+
;; This will enable async copy/rename etc...
38+
;; in dired and helm.
3939

4040
;;; Code:
4141

0 commit comments

Comments
 (0)