MagicPython
MagicPython copied to clipboard
Cutting edge Python syntax highlighter for Sublime Text, Atom and Visual Studio Code. Used by GitHub to highlight your Python code!
This is a workaround for: #242 Feel free to reject this as I believe this is an upstream bug. But just for the convenience, I'll post this PR as a...
* **Editor name and version**: * SublimeText4: 4121 * **Platform**: * Ubuntu 20.10 * **Color scheme**: * any: monokau, matherialUi, MaterialUiImproved * **MagicPython version**: * 1.1.1 * **A sreenshot**: *...
* **Editor name and version**: VS Code 1.62 * **Platform**: Any * **Color scheme**: N/A * **MagicPython version**: Most recent commit from master * **A sreenshot**:  * **5-10 lines...
We have written the needed data into your clipboard because it was too large to send. Please paste. Issue Type: Bug 1. creat a new .py file 2. type the...
* **Editor name and version**: Code-Server 1.60.0 * **Platform**: Ubuntu Server * **Color scheme**: * **MagicPython version**: v.1.1.1 * **A sreenshot**: *  * **5-10 lines of...
The stock Python package performs syntax highlighting inside strings containing SQL commands. That's rather useful, even though the implementation might need some more work. In this example: ``` python create...
* **Editor name and version**: VSCode 1.49.0 * **Platform**: Windows 10 * **Color scheme**: Dark+ * **MagicPython version**: Installed via Python extension v2020.8.108011 * **A sreenshot**:  * **5-10 lines...
Typing hints are displayed in the same color as python variables and statements. That looks somewhat confusing and makes it harder to see at once where is a typing hint,...
* **Editor name and version**: VSCode v1.55.0 * **Platform**: * **Color scheme**: default * **MagicPython version**: v1.1.0 * **A sreenshot**: * **5-10 lines of surrounding code**: ![Screen Shot 2021-04-13 at...
Issue Type: Feature Request @dataclass class Entity: TotalValue: float debtor: str creditor: str x = Entity(3.2, 'George', 'Fred') x.debtor = 8 The IDE does not warn you that you have...