forked from nickg/swank-chicken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslime.scm
38 lines (38 loc) · 1.18 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
(module slime (swank-server-start
swank:connection-info
swank:swank-require
swank:autodoc
swank:create-repl
swank: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)
(import scheme
chicken irregex)
(use ports
tcp
posix
srfi-1
srfi-13
symbol-utils
apropos
fmt)
(include "swank-chicken.scm"))