mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 06:09:18 +02:00
8 lines
338 B
Scheme
8 lines
338 B
Scheme
|
|
(define-library (chibi term edit-line)
|
|
(export make-line-editor edit-line edit-line-repl
|
|
make-history history-insert!
|
|
history-commit! history->list list->history buffer->string
|
|
make-buffer buffer-make-completer buffer-row buffer-col)
|
|
(import (scheme) (chibi stty) (srfi 9))
|
|
(include "edit-line.scm"))
|