## Project Structure ```text MQL5-Theme/ ├── .nevermind/ │ ├── image.png │ ├── initial_file_system.png │ └── token.md ├── .vscode/ │ ├── syntaxes/ │ │ └── mql5.tmLanguage.json │ ├── launch.json │ └── settings.json ├── Python/ │ ├── fix_package_json.py │ └── update_mql5_extension.py ├── syntaxes/ │ └── mql5.tmLanguage.json ├── .gitignore ├── .vscodeignore ├── icon.png ├── language-configuration.json ├── LICENSE ├── mql5-support-1.5.6.vsix ├── MQL5-Theme-syntax.mql5-support-1.5.1.vsix ├── package.json ├── prefixes.md ├── README.md ├── TECHSTACK.md └── test.mq5 ```