mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 22:29:16 +02:00
7 lines
277 B
Scheme
7 lines
277 B
Scheme
|
|
(define-library (chibi term edit-line)
|
|
(export edit-line edit-line-repl make-history history-insert!
|
|
history-commit! history->list list->history buffer->string
|
|
buffer-make-completer)
|
|
(import (scheme) (chibi stty) (srfi 9))
|
|
(include "edit-line.scm"))
|