Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xiongtx/eros
Evaluation Result OverlayS for Emacs Lisp.
https://github.com/xiongtx/eros
emacs evaluation overlays
Last synced: 3 months ago
JSON representation
Evaluation Result OverlayS for Emacs Lisp.
- Host: GitHub
- URL: https://github.com/xiongtx/eros
- Owner: xiongtx
- Created: 2016-11-30T08:34:38.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-19T08:59:39.000Z (almost 2 years ago)
- Last Synced: 2024-10-13T10:26:01.385Z (3 months ago)
- Topics: emacs, evaluation, overlays
- Language: Emacs Lisp
- Homepage:
- Size: 22.5 KB
- Stars: 156
- Watchers: 4
- Forks: 16
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![MELPA](https://melpa.org/packages/eros-badge.svg)](https://melpa.org/#/eros)
[![License GPL 3][badge-license]](http://www.gnu.org/licenses/gpl-3.0.txt)# Eros
**E**valuation **R**esult **O**verlay**S** for Emacs Lisp.
![Overlay](doc/overlay.png)
## Installation
Install via [MELPA](https://melpa.org/#/).
For general information on installing Emacs packages, see the [Emacs Wiki](https://www.emacswiki.org/emacs/InstallingPackages).
## Setup
In your init file, add the following to activate `eros-mode` and see Emacs Lisp evaluation results as inline overlays.
```emacs-lisp
(eros-mode 1)
```Use `M-x eros-mode` to turn the minor mode off, or call
```emacs-lisp
(eros-mode -1)
```## Credits
The code is mostly taken from [CIDER](https://github.com/clojure-emacs/cider), and the idea came from [Artur Malabarba's blog](http://endlessparentheses.com/eval-result-overlays-in-emacs-lisp.html).
[badge-license]: https://img.shields.io/badge/license-GPL_3-green.svg