Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/twlz0ne/elpl

Provides a simple interface to evaluating Emacs Lisp expressions but without contaminating current Emacs.
https://github.com/twlz0ne/elpl

Last synced: about 2 months ago
JSON representation

Provides a simple interface to evaluating Emacs Lisp expressions but without contaminating current Emacs.

Awesome Lists containing this project

README

        

[![CI](https://github.com/twlz0ne/elpl/workflows/CI/badge.svg)](https://github.com/twlz0ne/elpl/actions?query=workflow%3ACI)
[![MELPA](https://melpa.org/packages/elpl-badge.svg)](https://melpa.org/#/elpl)

## ELPL

Provides a simple interface to evaluating Emacs Lisp expressions but without contaminating current Emacs.



## Installation

Clone this repository, or install from MELPA. Add the following to your `.emacs`:

```elisp
(require 'elpl)
(define-key elpl-mode-map (kbd "C-c l") 'elpl-clean)
(define-key elpl-mode-map (kbd "C-c '") 'elpl-edit)
```

## Usage

- Start: M-x elpl
- Clean the `*elpl*` buffer: C-c l
- Edit in a separate buffer: C-c '

## Credits

- https://emacs-china.org/t/batch-read/9471/8 (@xuchunyang)
- https://www.masteringemacs.org/article/comint-writing-command-interpreter