https://github.com/mgalgs/jumbobuffer
jumbo-size minibuffer
https://github.com/mgalgs/jumbobuffer
Last synced: over 1 year ago
JSON representation
jumbo-size minibuffer
- Host: GitHub
- URL: https://github.com/mgalgs/jumbobuffer
- Owner: mgalgs
- Created: 2014-08-26T03:22:00.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2022-10-21T20:27:38.000Z (almost 4 years ago)
- Last Synced: 2025-03-15T07:44:23.496Z (over 1 year ago)
- Language: Emacs Lisp
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## jumbobuffer.el
*jumbo-size minibuffer*
---
[](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
-----