emacs-async icon indicating copy to clipboard operation
emacs-async copied to clipboard

Simple library for asynchronous processing in Emacs

Results 52 emacs-async issues
Sort by recently updated
recently updated
newest added

Right now on async it just shows: `Asynchronous Move of 1 on 1 file done`. I would like for there to be an option that shows which files were moved....

Starting an async process for fast operations is clunky, so add a new option/feature for skipping async if the operation is fast. Same device renames are fast (since it's just...

The GNU project recommends [1] that projects maintain a copy of the GPL license. This is also the recommendation from some Linux distributions [2]. This file has been downloaded from...

After enabling asynchronous compilation ``` elisp (use-package async :ensure t :demand t :init (setq async-bytecomp-allowed-packages '(all)) :config (async-bytecomp-package-mode 1)) ``` I'm having `Too many open files` for clean initialization from...

To reproduce: emacs -q ``` (package-initialize) (package-reinstall 'counsel) ;; or install if not installed ;; no error (async-bytecomp-package-mode 1) (package-reinstall 'counsel) Error: In toplevel form: counsel.el:46:1:Error: Symbol's value as variable...

async dired operations cause Emacs to hang sometimes. For example, when renaming a small file asynchronously, shortly after triggering the rename, Emacs locks up for half a second. Not sure...

Hello, there Is `async-send` officially part of the `async` API? I tried running `async-test-5` that uses `async-send` in child process and I'm not getting the `Got hello from child process`...

### version async package from melpa version "async-20200809.501" ### description On Emacs 27.1 for Windows, if the child process uses the message function, the arguments are inserted into the final...

Hey, there I don't know if I'm misunderstanding what the _intention_ of `async-let` is. If I understand correctly, it's missing an implicit feature from `let*` in that every binding inherits...

And by *we* I mean @thierryvolpiatto and me, and anyone else who adds something like the following to some of their packages: ```elisp (and (require 'async-bytecomp nil t) (let ((pkgs...