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

Is there a way to pause and continue the process? Thanks! This package is awesome!

See title. I think Emacs wget does a great job of this (very hard to find elisp, archived here https://github.com/monsanto/wget). A simple way to do this would be to add...

Hello, For some odd reason, my custom org-agenda renders the following characters as 'org-link' instead of an actual org-header. And after an extensive process of elimination, I found that the...

I'm writing about an issue with async.el we found when investigating an [issue with ssh-deploy](https://github.com/cjohansson/emacs-ssh-deploy/issues/57#issuecomment-491159230) `(async-start (lambda() (copy-file path-local path-remote t t t t)) (lambda(response) (message "Copied with response: %s"...

I've been seeing for awhile (maybe the past month or two) that async spawns *many* emacs processes over time like so: ``` sh /private/var/folders/g0/0j3_9c5d5xs81zh34_ng8mj80000gn/T/AppTranslocation/B57D43C2-CC68-4399-976F-97670E0825B7/d/Emacs.app/Contents/MacOS/Emacs-x86_64-10_10 -Q -l /Users/roambot/.emacs.d/.local/elpa/async-20181224.454/async.elc -batch -f async-batch-invoke...

Hi, Thanks for the amazing package! I have an idea for `async-bytecomp-package-mode`. Since `async-bytecomp-allowed-packages` is like a white list, can you provide a black list as well, please? Recently I...

Sometimes passing all your state setup in the async elisp call can be painful, especially if the library is being used by another one (in my case ob-async for org-mode)....

There exists a [test case `async-test-5` for `async-send`](https://github.com/jwiegley/emacs-async/blob/master/async-test.el). I modified that test case a bit to make debugging easier: (defun async-test-5 () (interactive) (message "Starting async-test-5...") (let ((proc (async-start ;;...

In termux's latest emacs 26.1, I run 'dired-async-do-copy', found that it does not copy anything at all. the status in 'mode-line' shows '1 async job(s)...' then quickly turned to be...

Hi John, I'm having a problem using `rg` with `async-start-process`: https://github.com/BurntSushi/ripgrep/issues/951 I tried to bind `process-connection-type` around `async-start-process`, but it has no effect because `async-start-process` rebinds it to `nil` before...