Initial commit
This commit is contained in:
commit
51f5e862a3
8 changed files with 467 additions and 0 deletions
35
fancy.scm
Normal file
35
fancy.scm
Normal file
|
@ -0,0 +1,35 @@
|
|||
(module fancy
|
||||
(cursor-up
|
||||
cursor-down
|
||||
cursor-forward
|
||||
cursor-back
|
||||
cursor-next
|
||||
cursor-previous
|
||||
cursor-hor
|
||||
cursor-pos
|
||||
erase-in-display
|
||||
erase-in-line
|
||||
scroll-up
|
||||
scroll-down
|
||||
save-pos
|
||||
restore-pos
|
||||
graphics-rendition-code
|
||||
graphics-style
|
||||
parse-tag
|
||||
parse-markup
|
||||
remove-markup
|
||||
rule)
|
||||
|
||||
(import scheme
|
||||
(chicken base)
|
||||
(chicken format)
|
||||
(chicken irregex)
|
||||
srfi-1
|
||||
utf8
|
||||
srfi-152)
|
||||
|
||||
(include "colors.scm")
|
||||
(include "format.scm")
|
||||
(include "rule.scm")
|
||||
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue