├── .dir-locals.el ├── .elpaignore ├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── COPYING ├── Eask ├── Makefile ├── README.md ├── async-bytecomp.el ├── async-package.el ├── async-test.el ├── async.el ├── dired-async.el ├── smtpmail-async.el └── tests └── test-async.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.elpaignore: -------------------------------------------------------------------------------- 1 | COPYING 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | *~ 3 | async-autoloads.el 4 | /.eask 5 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/COPYING -------------------------------------------------------------------------------- /Eask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/Eask -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/README.md -------------------------------------------------------------------------------- /async-bytecomp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/async-bytecomp.el -------------------------------------------------------------------------------- /async-package.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/async-package.el -------------------------------------------------------------------------------- /async-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/async-test.el -------------------------------------------------------------------------------- /async.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/async.el -------------------------------------------------------------------------------- /dired-async.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/dired-async.el -------------------------------------------------------------------------------- /smtpmail-async.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/smtpmail-async.el -------------------------------------------------------------------------------- /tests/test-async.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/emacs-async/HEAD/tests/test-async.el --------------------------------------------------------------------------------