From 9ce77fb55e7cb2f77d73c75a7625bf6e9c2cb883 Mon Sep 17 00:00:00 2001 From: Gerard Vermeulen Date: Sun, 3 Mar 2024 14:52:45 +0100 Subject: [PATCH] Uninstall `async' --- README.org | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/README.org b/README.org index 245389c..5f0fab7 100644 --- a/README.org +++ b/README.org @@ -306,7 +306,7 @@ of [[info:emacs#Saving Customizations][saving customizations (info)]]. (vertico . "gnu") (with-editor . "nongnu") (yasnippet . "gnu")) - package-selected-packages '(async debbugs no-littering)) + package-selected-packages '(debbugs no-littering)) #+end_src #+caption[Set the third set of Emacs options: upgrade Org and transient]: @@ -961,10 +961,7 @@ extension. #+end_src Listing [[lst:extra-dired-key-bindings]] adds a new key binding to =dired-mode-map= -to open files with the [[https://en.wikipedia.org/wiki/Eww_(web_browser)][Emacs Web Wowser]] inside Emacs and implements asynchronous -file copying using the src_emacs-lisp{(find-library "dired-async")} library -under the hood. *NOTE:* [[https://github.com/stsquad/dired-rsync#dired-rsync--asynchronous-rsync-from-dired][asynchronous rsync from dired]] may be a better -alternative. +to open files with the [[https://en.wikipedia.org/wiki/Eww_(web_browser)][Emacs Web Wowser]] inside Emacs. #+caption[Extra =dired= key bindings]: #+caption: Extra =dired= key bindings. @@ -980,13 +977,6 @@ alternative. (error "Eww rejects `%s', since it is not a regular file" file)))) (keymap-set dired-mode-map "E" #'dired-eww-open-file)) - -(when (require 'dired-async nil 'noerror) - ;; Does this fail? Or is it too fast? - ;; Fix this later, but rsync works from zsh. - ;; https://www.emacs.dyerdwelling.family/emacs/ - ;; https://www.reddit.com/r/emacs/comments/g0jkkj/using_dired_asynchronously/ - (setopt dired-async-small-file-max 5000000)) #+end_src * [[info:emacs#Completion Styles][Minibuffer completion styles (info)]]