-
Notifications
You must be signed in to change notification settings - Fork 19
/
NEWS
168 lines (122 loc) · 5.28 KB
/
NEWS
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
* SLIME News -*- outline -*-
* 3.0 (not released yet)
** Environment variables for Lisp process
slime-lisp-implementations can be used to specify a list of strings to
augment the process environment of the Lisp process. E.g.:
(sbcl-cvs
("/home/me/sbcl-cvs/src/runtime/sbcl"
"--core" "/home/me/sbcl-cvs/output/sbcl.core")
:env ("SBCL_HOME=/home/me/sbcl-cvs/contrib/"))
** Removed Features
Some of the more esoteric features, like presentations or fuzzy
completion, are no longer enabled by default. A new directory
"contrib/" contains the code for these packages. To use them, you
must make some changes to your ~/.emacs. For details see, section
"Contributed Packages" in the manual.
** Stepper
Juho Snellman implemented stepping commands for SBCL.
** Completions
SLIME can now complete keywords and character names (like #\newline).
* 2.0 (April 2006)
** In-place macro expansion
Marco Baringer wrote a new minor mode to incrementally expand macros.
** Improved arglist display
SLIME now recognizes `make-instance' calls and displays the correct
arglist if the classname is present. Similarly, for `defmethod' forms
SLIME displays the arguments of the generic function.
** Persistent REPL history
SLIME now saves the command history from REPL buffers in a file and
reloads it for newly created REPL buffers.
** Scieneer Common Lisp
Douglas Crosher added support for Scieneer Common Lisp.
** SBCL
Various improvements to make SLIME work well with current SBCL versions.
** Corman Common Lisp
Espen Wiborg added support for Corman Common Lisp.
** Presentations
A new feature which associates objects in Lisp with their textual
represetation in Emacs. The text is clickable and operations on the
associated object can be invoked from a pop-up menu.
** Security
SLIME has now a simple authentication mechanism: if the file
~/.slime-secret exists we verify that Emacs and Lisp can access it.
Since both parties have access to the same file system, we assume that
we can trust each other.
* 1.2 (March 2005)
** New inspector
The lisp side now returns a specially formated list of "things" to
format which are then passed to emacs and rendered in the inspector
buffer. Things can be either text, recursivly inspectable values, or
functions to call. The new inspector has much better support CLOS
objects and methods.
** Unicode
It's now possible to send non-ascii characters to Emacs, if the
communication channel is configured properly. See the variable
`slime-net-coding-system'.
** Arglist lookup while debugging
Previously, arglist lookup was disabled while debugging. This
restriction was removed.
** Extended tracing command
It's now possible to trace individual a single methods or all methods
of a generic function. Also tracing can be restricted to situations
in which the traced function is called from a specific function.
** M-x slime-browse-classes
A simple class browser was added.
** FASL files
The fasl files for different Lisp/OS/hardware combinations are now
placed in different directories.
** Many other small improvements and bugfixes
* 1.0 (September 2004)
** slime-interrupt
The default key binding for slime-interrupt is now C-c C-b.
** sldb-inspect-condition
In SLDB 'C' is now bound to sldb-inspect-condition.
** More Menus
SLDB and the REPL have now pull-down menus.
** Global debugger hook.
A new configurable *global-debugger* to control whether
swank-debugger-hook should be installed globally is available. True by
default.
** When you call sldb-eval-in-frame with a prefix argument, the result is
now inserted in the REPL buffer.
** Compile function
For Allegro M-. works now for functions compiled with C-c C-c.
** slime-edit-definition
Better support for Allegro: works now for different type of
definitions not only. So M-. now works for e.g. classes in Allegro.
** SBCL 0.8.13
SBCL 0.8.12 is no longer supported. Support for 0.8.12 was broken for
for some time now.
* 1.0 beta (August 2004)
** autodoc global variables
The slime-autodoc-mode will now automatically show the value of a
global variable at point.
** Customize group
The customize group is expanded and better-organised.
** slime-interactive-eval
Interactive-eval commands now print their results to the REPL when
given a prefix argument.
** slime-conservative-indentation
New Elisp variable. Non-nil means that we exclude def* and with-* from
indentation-learning. The default is t.
** (slime-setup)
New function to streamline setup in ~/.emacs
** Modeline package
The package name in the modeline is now updated on an idle timer. The
message should now be more meaningful when moving around in files
containing multiple IN-PACKAGE forms.
** XREF bugfix
The XREF commands did not find symbols in the right package.
** REPL prompt
The package name in the REPL's prompt is now abbreviated to the last
`.'-delimited token, e.g. MY.COMPANY.PACKAGE would be PACKAGE. This
can be disabled by setting SWANK::*AUTO-ABBREVIATE-DOTTED-PACKAGES* to
NIL.
** CMUCL source cache
The source cache is now populated on `first-change-hook'. This makes
M-. work accurately in more file modification scenarios.
** SBCL compiler errors
Detect compiler errors and make some noise. Previously certain
problems (e.g. reader-errors) could slip by quietly.
* 1.0 alpha (June 2004)
The first preview release of SLIME.