Alive: The Average Lisp VSCode EnvironmentAn 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 Extension RequirementsThe 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.
Features
Extension SettingsThis extension contributes the following settings:
Syntax highlighting is done using semantic tokens. This is mainly to avoid regex hell. The following symantic tokens are added:
REPL IntegrationThe current idea is to use VSCode as the REPL, leveraging VSCode features to give a visual insight into the running image.
Form EvaluationAt the bottom of the VSCode workbench, in the Panel area, is a REPL view with a user input area at the bottom. Results of execution of any form by the REPL are shown in this panel. The user may also enter ad hoc forms in the user input area at the bottom of the view. For example: Forms entered by the user are also added to a history list. The up and down arrows can be used in the user intput area to choose a previous form to be (possibly edited and) reevaluated. The history list is also shown in the REPL HISTORY view in the Lisp Tree View described below. Forms sent for evaluation by the user are run in their own thread. The threads have names like InspectionAn inspector can be opened by clicking The same view can be opened by evaluating an expression in the INSPECTOR view in the Lisp Tree View described below. In either case the same inspector view is opened in a panel on the right side of the workbench. 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 There is also an inspector for macros, using the Inspect Macro command. An inspector opens that shows one level of expansion for the macro at the current cursor position. It has a button to refresh the inspector or increment the level of expansion by one. When an expression is sent for evaluation, such as redefining the macro, the expansion is refreshed back to one level. Lisp Tree ViewThe Lisp Tree View is invoked by clicking on the following icon in the Activty Bar on the left of the VSCode workbench: There are a number of views in the Lisp Tree View to display and manipulate different aspects of your current Lisp REPL. REPL HistoryThe REPL HISTORY view displays all of the Lisp forms evaluated manually by the user in the provided REPL panel described above. The clear all icon () at the right of the title bar for this view clears the history. Clicking on a form in the list shows the form's containing package on the next line. To the right of the form are three icons:
InspectorThe INSPECTOR view can generate an inspect panel for a symbol. Inspection is done in the context of a specific package. The line below the title bar displays the current package, clicking on that line brings up a menu of packages from which to choose. Once the package is chosen, the next line is a user entry box
into which any valid Common Lisp form may be entered.
Variable names do not need to be quoted but function names do.
More complex forms will be evaluated and the result inspected.
If the result of the expression is not For example:
will display as: Inspection is discussed in more detail in the Inspection section below. PackagesThe PACKAGES view shows all of the packages in the REPL. The refresh icon () at the right of the title bar updates the package list to be current with the REPL. This view is not automatically updated when packages are added. Clicking on a package in the list expands to show all of the symbols defined in that package below the package name. Clicking on the remove icon () to the right of a symbol removes that symbol. ASDF SystemsThe ASDF SYSTEMS view shows all of the ASDF systems defined in the REPL. The refresh icon () at the right of the title bar updates the ASDF system list to be current with the REPL. This view is not automatically updated when systems are added. Clicking on the () to the right of a system loads that system into the REPL by executing Alive: Load ASDF System By Name for that system. ThreadsThe THREADS view shows all of the threads executing in the REPL. The refresh icon () at the right of the title bar updates the thread list to be current with the REPL. This may not be necessary as in at least some cases the addition of a thread shows up automatically in this view. Clicking on the remove icon () to the right of a thread kills the thread. CommandsSelect S-Expression (Alt+Shift+Up)Selects the surrounding top level expression for the current cursor position. Send To REPL (Alt+Shift+Enter)Sends selected text to the REPL. If nothing is selected, sends the top level form at the cursor position. Load File (Alt+Shift+L)Load the current file into the REPL. Inline Evaluation (Alt+Shift+E)Evaluate the enclosing form, showing the result inline. If there is a selection, evaluates the selected code. Clear Inline Results (Alt+Shift+C)Clear the inline results. REPL History (Alt+Shift+R)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. Load ASDF SystemTell the REPL to load an ASDF system. A list of known systems will be given to choose from. Open Scratch PadOpens a temporary file, Macro Expand AllSelected text is passed to macroexpand and expanded in place. If nothing is selected, the form surrounding the cursor is sent. Macro Expand 1Selected text is passed to macroexpand-1 and expanded in place. If nothing is selected, the form surrounding the cursor is sent. Inspect MacroAn inspector is opened for the currently selected text. If nothing is selected, the form surrounding the cursor is sent. LicenseUnless otherwise noted, all files are in the Public Domain. Developing Alive CodeIf you are interesting in making changes to Alive you should take a look at the Development Notes. Release NotesNo actual releases, yet. |