Official Mable language support by Mythorable for Visual Studio Code, including syntax highlighting, completion, hover, symbols, diagnostics, and snippets.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Official Visual Studio Code language support for the Mable programming language.
Features
Syntax highlighting for .mable files
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
.mable icon theme support via imported vscode-icons assets
Basic validation support for Mable.xml manifest 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;
}
}