Skip to content

Commit

Permalink
Fix pkg file and instructions in dired-async.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thierry Volpiatto committed Sep 10, 2015
1 parent 8bb464f commit 128eb83
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion async-pkg.el
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
;;; async-pkg.el

(define-package "async" "1.4" "Asynchronous processing in Emacs" 'nil)
(define-package "async" "1.4"
"Asynchronous processing in Emacs"
'((emacs "24")
(cl-lib "0.5"))
:url "https://github.com/jwiegley/emacs-async")

;; Local Variables:
;; no-byte-compile: t
Expand Down
16 changes: 8 additions & 8 deletions dired-async.el
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
;;; Commentary:

;; This file provide a redefinition of `dired-create-file' function,
;; which must be loaded *after* dired-aux.el, performs copies,
;; moves and all what is handled by `dired-create-file' in the background
;; using a slave Emacs process, by means of the async.el module.
;; performs copies, moves and all what is handled by `dired-create-file'
;; in the background using a slave Emacs process,
;; by means of the async.el module.
;; To use it, put this in your .emacs:
;;
;; (eval-after-load "dired-aux"
;; '(require 'dired-async))
;;
;;

;; (dired-async-mode 1)

;; This will enable async copy/rename etc...
;; in dired and helm.

;;; Code:

Expand Down

0 comments on commit 128eb83

Please sign in to comment.