chibi-scheme/lib/chibi/term/edit-line.sld
Alex Shinn ea6e44f7d0 Distinguishing general read errors from incomplete input read errors.
Using these to allow multi-line input in edit-line.
2014-05-05 21:05:02 +09:00

11 lines
493 B
Scheme

(define-library (chibi term edit-line)
(export make-line-editor edit-line edit-line-repl
make-history history-insert! history-reset!
history-commit! history->list list->history buffer->string
make-buffer buffer-make-completer
buffer-clear buffer-refresh buffer-draw
buffer-row buffer-col
make-keymap make-standard-keymap)
(import (chibi) (chibi ast) (chibi stty) (chibi process) (srfi 9) (srfi 33))
(include "edit-line.scm"))