Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mgalgs/jumbobuffer
jumbo-size minibuffer
https://github.com/mgalgs/jumbobuffer
Last synced: 5 days ago
JSON representation
jumbo-size minibuffer
- Host: GitHub
- URL: https://github.com/mgalgs/jumbobuffer
- Owner: mgalgs
- Created: 2014-08-26T03:22:00.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-10-21T20:27:38.000Z (over 2 years ago)
- Last Synced: 2025-01-20T23:03:10.822Z (13 days ago)
- Language: Emacs Lisp
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## jumbobuffer.el
*jumbo-size minibuffer*---
[![License GPLv3](https://img.shields.io/badge/license-GPL_v3-green.svg)](http://www.gnu.org/licenses/gpl-3.0.html)jumbobuffer provides a function (`read-from-jumbobuffer`) for reading
multi-line input from a temporary buffer at the bottom of the current
window. It's like the minibuffer, but jumbo.### Installation
Put this file on your load-path and do:
(require 'jumbobuffer)
### Usage
The main function provided by this package is
`read-from-jumbobuffer`. It has the same call signature as
`read-from-minibuffer` but ignores all arguments besides `PROMPT` and
`INITIAL-CONTENTS`.To finish input, type `C-c C-c`.
### Function and Macro Documentation
#### `(read-from-jumbobuffer PROMPT &optional INITIAL-CONTENTS KEYMAP READHIST DEFAULT-VALUE INHERIT-INPUT-METHOD)`
Like `read-from-minibuffer`, but with multi-line input
-----