Cimple Syntax HighlightingCimple is a Python-compatible language with a few small twists, so this extension reuses VS Code built-in Python TextMate grammar and maps it to the cimple scope. That keeps the colors, comments, and indentation assistance you already expect while laying the groundwork for future Cimple-specific tweaks. Features
Quick start
Extending the grammarsyntaxes/cimple.tmLanguage.json merely includes source.python today. If you need to colorize new Cimple keywords, operators, or literal formats later, add new patterns to the repository section and reference them from the patterns array. That way you can build on the Python base without rewriting the entire grammar. Testing the setup
Publishing notesSince this extension is purely language metadata and grammar files, the contributes block is the public API: any file that matches .cimp, .csc, or .cimple maps to source.cimple. No activation events beyond onLanguage:cimple are needed right now. |