forked from nickg/swank-chicken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slime.scm
63 lines (63 loc) · 2.22 KB
/
slime.scm
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
(module slime (swank-server-start
swank:connection-info
swank:swank-require
swank:autodoc
swank:create-repl
swank-repl:create-repl
swank:listener-eval
swank-repl:listener-eval
swank:compile-string-for-emacs
swank:interactive-eval
swank:interactive-eval-region
swank:pprint-eval
swank:operator-arglist
swank:throw-to-toplevel
swank:invoke-nth-restart-for-emacs
swank:backtrace
swank:load-file
swank:autodoc
swank:simple-completions
swank:buffer-first-change
swank:filename-to-modulename
swank:find-definitions-for-emacs
swank:swank-require
swank:describe-symbol
swank:documentation-symbol
swank:inspect-frame-var
swank:quit-inspector
swank:frame-locals-and-catch-tags
swank:apropos-list-for-emacs
swank:set-default-directory
swank:default-directory
swank:init-presentations
swank-trace-dialog:dialog-toggle-trace
swank-trace-dialog:dialog-untrace
swank-trace-dialog:report-specs
swank-trace-dialog:report-total
swank-trace-dialog:report-partial-tree
swank-trace-dialog:inspect-trace-part
swank-trace-dialog:report-trace-detail
swank-trace-dialog:clear-trace-tree
swank-trace-dialog:dialog-untrace-all
swank:init-presentations
swank-repl:create-repl)
(import scheme)
(cond-expand
(chicken-5 (import (chicken base)
(chicken irregex)
srfi-1
srfi-13
symbol-utils
apropos
fmt))
(chicken-4 (import chicken irregex)
(use ports
tcp
posix
srfi-1
srfi-13
symbol-utils
apropos
fmt))
(else (error "Unsupported CHICKEN version.")))
(include "swank-chicken.scm"))