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 it possible to use async-bytecomp as an after-save-hook, without recompiling the whole directory with subdirs each time?

Hi, I'm trying to investigate why this build in failing: https://travis-ci.org/mrkkrp/dot-emacs/builds/150880103#L4205 It seems it's doing fine, but always chokes on trying to find `async-bytecomp.log` file for some reason. I have...

Hello, When running the following: (async-start (lambda () (set-face-font 'default "Source Code Pro for Powerline-11")) (lambda (result) (message "result: %s" result)) ) The following messages are produced: error in process...

The version of emacs-async on GNU ELPA is over a year old: https://elpa.gnu.org/packages/async.html It would be nice if a new version could be released with the latest changes. Thanks!

Hello, When copying a file asynchronously to a remote server via tramp, the file cannot be opened right away. When trying to open it from the dired buffer of the...

`dired-async-mode` is not working with recent versions of emacs when tramp needs to perform out-of-band copies. It is not clear whether this is a tramp bug or an async bug....

Fixes the smtp-asyn documentation by pointing to the right .el file to load

It appears that any value of `START-FUNC` for `async-start` that returns a hash table gets forwarded to `FINISH-FUNC` as a list. See repro below: ```emacs-lisp (async-start (lambda () (ht)) (lambda...

I was just playing around with a simple example and pretty consistently get this error with this particular setup. I just tried: ```lisp (defun example () "" (let ((thread (make-thread...

I'm told that `async.el` uses the `utf-8-auto` coding-system to encode stuff, assuming that the "auto" part means this coding-system handles the end-of-line (EOL) format automagically. This is a mistake. Please...