Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xuchunyang/other-emacs-eval
Evaluate the Emacs Lisp expression in other Emacs
https://github.com/xuchunyang/other-emacs-eval
Last synced: about 1 month ago
JSON representation
Evaluate the Emacs Lisp expression in other Emacs
- Host: GitHub
- URL: https://github.com/xuchunyang/other-emacs-eval
- Owner: xuchunyang
- Created: 2018-03-29T11:31:41.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-08T13:50:54.000Z (over 6 years ago)
- Last Synced: 2024-10-16T01:45:55.310Z (3 months ago)
- Language: Emacs Lisp
- Size: 5.86 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# other-emacs-eval.el -- Evaluate the Emacs Lisp expression in other Emacs
[![Melpa](https://melpa.org/packages/other-emacs-eval-badge.svg)](https://melpa.org/#/other-emacs-eval)
``` emacs-lisp
emacs-version
;; => "27.0.50"(other-emacs-eval 'emacs-version "emacs-25.3.1")
;; => "25.3.1"
```## Usage
### `(other-emacs-eval FORM &optional EMACS)`
Evaluate `FORM` with `EMACS` and return its value.
### `M-x other-emacs-eval-expression`
Evaluate `EXP` with `EMACS`; print value in the echo area.
### `M-x other-emacs-eval-last-sexp`
Evaluate sexp before point with `EMACS`; print value in the echo area.
### `M-x other-emacs-eval-print-last-sexp`
Evaluate sexp before point with `EMACS`; print value into current buffer.
### `M-x other-emacs-eval-region`
Evaluate Emacs Lisp code in the region with `EMACS`.
## Requirements
- Emacs 25.1
- async.el