-
Notifications
You must be signed in to change notification settings - Fork 21
/
terminal-package.lisp
46 lines (46 loc) · 1.08 KB
/
terminal-package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
(defpackage :software-evolution-library/terminal
(:use :gt :cffi :cl-interpol)
(:export :make-terminal-raw
:make-terminal-unraw
:ioctl
:term-size
:return-no-extent-term
:*view-stream*
;; Colors and control sequences.
:+set-G1+
:+reset-G1+
:+b-start+
:+b-stop+
:+b-h+
:+b-v+
:+b-lt+
:+b-rt+
:+b-lb+
:+b-rb+
:+b-x+
:+b-vr+
:+b-vl+
:+b-ht+
:+b-hb+
:+term-home+
:+term-clear+
:+ceol+
:+cursor-hide+
:+cursor-show+
:+color-BLK+
:+color-RED+
:+color-GRN+
:+color-BRN+
:+color-BLU+
:+color-MGN+
:+color-CYA+
:+color-NOR+
:+color-GRA+
:+color-LRD+
:+color-LGN+
:+color-YEL+
:+color-LBL+
:+color-PIN+
:+color-LCY+
:+color-BRI+
:+color-RST+))