joaotavora / sly

Sylvester the Cat's Common Lisp IDE
1.26k stars 142 forks source link

Slight documentation mismatch for `sly-inspector-quit` #463

Open nagy opened 3 years ago

nagy commented 3 years ago

The documentation of sly-inspector-quit reads:

Quit the inspector and kill the buffer. ...

While the body is:

(when reset (sly-eval-async `(slynk:quit-inspector)))
(quit-window)

Ignoring the first form, quit-window does not actually kill the buffer. Its documentation reads:

Quit WINDOW and bury its buffer. ...

In fact, the inspector buffer is still alive after a call to sly-inspector-quit.

We should either kill the buffer or adapt the documentation.