https://github.com/chr1st0scli/rainlisp-vscode
RainLisp support for Visual Studio Code.
https://github.com/chr1st0scli/rainlisp-vscode
dotnet interpreter lisp lisp-dialect lisp-interpreter programming-language repl vscode-extension
Last synced: 4 months ago
JSON representation
RainLisp support for Visual Studio Code.
- Host: GitHub
- URL: https://github.com/chr1st0scli/rainlisp-vscode
- Owner: chr1st0scli
- License: mit
- Created: 2023-06-17T17:45:48.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-23T10:46:05.000Z (4 months ago)
- Last Synced: 2025-02-23T11:27:37.179Z (4 months ago)
- Topics: dotnet, interpreter, lisp, lisp-dialect, lisp-interpreter, programming-language, repl, vscode-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=chr1st0scli.rainlisp-vscode
- Size: 287 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# RainLisp VSCode
[](https://marketplace.visualstudio.com/items?itemName=chr1st0scli.rainlisp-vscode)
[](LICENSE.txt)
VSCode extension for [RainLisp](https://github.com/chr1st0scli/RainLisp) support.
## Features
This extension offers syntax highlighting, code completion, code snippets, procedure signature help, mouse hover information, a theme and integration with RainLisp's interpreter.

In order to get started with RainLisp, you can visit its [repository](https://github.com/chr1st0scli/RainLisp),
where you can find a [tutorial](https://github.com/chr1st0scli/RainLisp/blob/master/RainLisp/Docs/quick-start.md) and other material.## Requirements
If you want to run RainLisp code and not just write it, you need to download the interpreter, [RainLisp Console](https://github.com/chr1st0scli/RainLispConsole).
You need to have .NET 6 or later installed.
In order to download RainLispConsole from NuGet and install it as a global tool, run the following command in a command line shell.
```
dotnet tool install -g RainLispConsole
```If you already have it installed and you want to update it, run the following command.
```
dotnet tool update -g RainLispConsole
```Once installed, you can hit Ctrl + F12, or cmd + F12 for MacOS, while working with a RainLisp file (*.rl), to run the code.