Uninstall `async'

This commit is contained in:
Gerard Vermeulen 2024-03-03 14:52:45 +01:00
parent dd99c33246
commit 9ce77fb55e
1 changed files with 2 additions and 12 deletions

View File

@ -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)]]