This is the official Visual Studio Code extension for the Miri programming language. It provides syntax highlighting and basic support for Miri source files (.mi).
Features
Syntax Highlighting: Comprehensive coloring for Miri keywords, types, strings, comments, and numbers.
Language Configuration: Basic auto-closing pairs and indentation rules.
Installation
You can install this extension directly from the VS Code Marketplace (search for "Miri Language") or build it from source.
Example Code
use system.io
fn main()
let x int = 10
let message = f"Value is {x}"
println(message)
Contributing
To contribute to this extension or the Miri language compiler itself, please visit the Extension GitHub Repository.
Local Development
Clone the repository: git clone https://github.com/miri-lang/vsc-extension.git
Navigate to the extension folder: cd vsc-extension
Install dependencies: npm install
Open the folder in VS Code and press F5 to start debugging.