An attempt to create a Common Lisp extension for VSCode. It's still a work in progress, though getting better.
The name is partly a self-deprecating take on SLIME's name, but also reflects the goal of the project which is to reach Minimum Viable Product status. For VSCode language extensions, there is a lot that is expected for the bare minimum, including formatting, code completion, syntax highlighting, etc.
The LSP server that the extension relies on currently only supports Steel Bank Common Lisp (SBCL). The extension isn't intended to be compiler-specific, but it is at the moment. The server can be found here, https://github.com/nobody-famous/alive-lsp
The following must be installed prior to useing the Alive extension. It is okay for these to be installed after the extension is installed, although you may need to reload your VS Code window after doing so.
-
ASDF (not asdf): version 3.3.3 or later.
- Note: SBCL comes with ASDF already installed.
-
The LSP server uses the following Common Lisp libraries, which need to be installed for it to work.
-
Libraries:
- bordeaux-threads
- usocket
- cl-json
- flexi-streams
-
If you are new to Common Lisp, then the Quicklisp library manager is recommended. Follow the installation instructions to install Quicklisp. Then the above libraries can be installed by executing the following expressions in an
sbcl
shell:(ql:quickload "bordeaux-threads")
(ql:quickload "usocket")
(ql:quickload "cl-json")
(ql:quickload "flexi-streams")
An example SBCL and Quicklisp session (where `...` stands for a bunch of stuff printed to the console)
> sbcl ... * (ql:quickload "bordeaux-threads") ... * (ql:quickload "usocket") ... * (ql:quickload "cl-json") ... * (ql:quickload "flexi-streams") ...
-
- Syntax highlighting
- Code completion
- Code formatter
- Snippets
- REPL integration
- REPL history
- Inline evaluation
This extension contributes the following settings:
alive.lsp.install.path
: Directory where the LSP source code is installedalive.lsp.startCommand
: Command used to start the LSP serveralive.format.indentWidth
: Default indentation width
Syntax highlighting is done using semantic tokens. This is mainly to avoid regex hell. The following symantic tokens are added:
parenthesis
: Color to use for parenthesissymbol
: Color to use for symbols
The current idea is to use VSCode as the REPL, leveraging VSCode features to give a visual insight into the running image.
- There is a REPL console that mimics the debug console.
- A Lisp tree view is added that shows the REPL history, threads, packages, and defined ASDF systems.
- User input requested by the REPL is prompted with a text box.
- History items can be re-run by using the up/down arrow keys in the REPL console, using the re-run action in the history tree view, or using "REPL History" from the command palette.
An inspector can be opened by evaluating an expression in the inspector view or by clicking Inspect
at the bottom of the hover text for a symbol.
At the bottom of each inspector view is a text field that can be used to evaluate expressions.
The value in the inspector can be referenced with *
. For example, (format T "~A" *)
will print the current value in the REPL window.
If the result of the expression is not nil
, a new inspector view will be opened with the value.
Forms sent for evaluation by the user are run in their own thread. The threads have names like "N - $/alive/eval" where N is a number. The number is used to try to keep the names unique since getting the underlying system id of the threads isn't as easy as it sounds. If one of them gets stuck in an infinite loop or something, it should be safe to terminate the thread using the "X" action in the threads tree view.
Selects the surrounding top level expression for the current cursor position.
Sends selected text to the REPL. If nothing is selected, sends the top level form at the cursor position.
Load the current file into the REPL.
Evaluate the enclosing form, showing the result inline. If there is a selection, evaluates the selected code.
Clear the inline results.
Expressions that are evaluated from the REPL window are added to the history. This command opens a quick pick selector with the history. The most recently used item is at the top, i.e. similar behavior to the Run Tasks command.
Tell the REPL to load an ASDF system. A list of known systems will be given to choose from.
Opens a temporary file, {workspace}/.vscode/alive/scratch.lisp
, that can be used to evaluate expressions, making use of the normal editing features like code completion.
Unless otherwise noted, all files are in the Public Domain.
No actual releases, yet.