Visual Studio Code
Visual Studio Code is the recommended editor for Rux. The official Rux Language extension adds syntax highlighting for .rux source files.
Installing the Extension
sh
# Press Ctrl+P in VS Code and paste:
ext install rux-lang.vscode-ruxsh
code --install-extension rux-lang.vscode-ruxAlternatively, open the Extensions panel (Ctrl+Shift+X), search for Rux Language, and click Install.
Features
- Syntax highlighting for
.ruxsource files - Markdown code fence injection — Rux code blocks in
.mdfiles are highlighted automatically
Creating a New Project
sh
rux new MyApp
cd MyApp
code .