Vaja Syntax Highlighting for VS Code
Vaja Language Extension
Syntax highlighting & developer support for .vaja files in Visual Studio Code
✨ Features
- Beautiful syntax highlighting for the Vaja programming language
- Keywords (
func , if , else , etc.)
- Types (
int , long , bool , string , void )
- Operators (
<- , == , + , - , etc.)
- Strings, numbers, booleans
- Function calls, variables, parameters
- Comments (line/block)
- Custom theme scopes: assignment operator
<- and other language features have unique highlighting.
- Ready for customization: Easily tweak colors in your own VS Code theme settings.
- File association: Automatically activates for
.vaja files.
🚀 Getting Started
Install from the Marketplace
Search for Vaja in the VS Code Extensions view (Ctrl+Shift+X) and click Install.
Open or create a .vaja file
Syntax highlighting and language features will be enabled automatically.
🎨 Custom Theme (Optional)
This extension bundles a dark theme with dedicated colors for Vaja-specific syntax.
- To enable:
Go to Preferences > Color Theme and select Vaja Dark.
Want to customize further?
Add custom scopes like this to your VS Code settings.json :
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "keyword.operator.assignment.vaja",
"settings": {
"foreground": "#FF79C6",
"fontStyle": "bold"
}
}
]
}
| |