Official Visual Studio Code language support for the Mable programming language.
Features
- Syntax highlighting for
.mablefiles - Mable language identification
- Mable-specific comments
- Bracket matching and auto-closing
- Basic diagnostics for Mable public class rules, missing semicolons, unclosed brackets, unknown types, and invalid calls
- Snippets and completion support for common Mable constructs
.mableicon theme support via importedvscode-iconsassets- Basic validation support for
Mable.xmlmanifest files
Requirements
No additional requirements are currently needed.
License
This extension is licensed under the MIT License. Icon assets used by the extension are imported from the vscode-icons project and are also used under the MIT License.
Usage
Install the extension and open any file with the .mable extension.
Example:
public class Main {
public static int main(String[] args) {
print("Hello, World!");
return 0;
}
}