z80-macroasm-vscode
z80-macroasm-vscode copied to clipboard
Support for Z80 macro-assemblers in Visual Studio Code
This can be achieved by adding this to `language.configuration.json`: ``` "folding": { "markers": { "start": "^\\s*;\\s*#?region\\b", "end": "^\\s*;\\s*#?endregion\\b" } } ```
Type: `ld a,0xC0+2` Then type Space. Result: +2 gets deleted. `ld a,0xC0`
Hi! Thanks for this great extension. I seem to have a problem though. It seems that code completion for things like register and label names provided by this extension is...
Currently, all labels shown in the VSCode OUTLINE tab (IntelliSense) as variables (see the complete list of icons [here](https://code.visualstudio.com/docs/editor/intellisense#_types-of-completions)). It would be nice to differentiate between the following, to allow...