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

Hello. The async-autoloads.el on the Makefile doesn’t exist. This also makes emacs-async package fail in the Arch Linux AUR repositories.

Please consider putting async in a more logical place within the customize hierarchy. Thanks.

Hi, sorry because it is not an issue, but I'd like to open the files in asyncronous ... Where can I start with this package to achieve my aim ?...

When the `async-start-process` callback function accidentally kills the processes buffer itself, this kills one other (previous) buffer: ``` emacs-lisp (defun async-when-done (proc &optional _change) "Process sentinel used to retrieve the...

Under certain conditions, [process sentinels don't run during init](https://emacs.stackexchange.com/questions/60408/process-sentinels-dont-run-during-init-in-gui-emacs?noredirect=1#comment94886_60408). Because of this, if one does `async-get` (or similar) during init, the init will stall indefinitely. I have reproduced this using...

There is a bug with installing packages from a local repo in `-batch` mode. It _**sometimes**_ occurs on different platforms and Emacs versions. Logs: https://github.com/syl20bnr/spacemacs/pull/13927/checks?check_run_id=1082259820#step:7:2228 https://github.com/syl20bnr/spacemacs/pull/13930/checks?check_run_id=1087680209#step:7:1964 I think it is...

Hi! Thanks for a great repo. I have made a integration with it in my project [emacs-ssh-deploy](https://github.com/cjohansson/emacs-ssh-deploy) and this enabled asynchronous download, upload, diff processes. But if I for instance...

Hi @jwiegley , I am stopping updating Elpa as I feel it is really unnecessary, most people are using async from Melpa and use github to report bugs, the Elpa...

`async-when-done` may encounter an error when `process-status` returns `exit` and `process-buffer` returns `nil`. I think this error can arise due to race conditions when a process exits cleanly but its...

The `async-when-done` process sentinel performs clean-up only when the process status is `exit`. It does nothing when `process-status` returns `signal`. This is the case when `delete-process` is called on the...