prb28 / vscode-amiga-assembly

Amiga Assembly extension for Visual Studio Code
GNU General Public License v3.0
178 stars 12 forks source link

Can we please put a space after the comma? #267

Open cbmeeks opened 1 year ago

cbmeeks commented 1 year ago

I don't know if this is an extension issue or perhaps a VASM issue, but I much prefer to put a space after commas.

Instead of this:

lea    $dff000,a5               ; set the hardware registers base address to a5

I prefer this:

lea    $dff000, a5              ; set the hardware registers base address to a5

I know that is a very subtle difference but I'm kinda OCD on this. Especially since my C64 programming environment (KickAssembler) allows this.

Thanks!