This VS Code plugin gives very basic support for the Phel Language. Currently only syntax highlighting is supported.
This plugin is currently not installable via the VS Code marketplace. To install the plugin you must manually copy or link the code of this plugin to the extension directory. Depending on your platform, the location is in the following folder:
- Windows
%USERPROFILE%\.vscode\extensions
- macOS
~/.vscode/extensions
- Linux
~/.vscode/extensions
cd ~
git clone https://github.com/phel-lang/phel-vs-code-extension.git
cd ~/.vscode/extensions
ln -s ~/phel-vs-code-extension phel-lang
Restart VS Code.
Open PowerShell as an administrator, then run the following:
cd ~
git clone https://github.com/phel-lang/phel-vs-code-extension.git
cd ~/.vscode/extensions
New-Item -ItemType SymbolicLink -Target "%USERPROFILE%\phel-vs-code-extension" -Path "phel-lang"
Restart VS Code.