13xforever / x86-assembly-textmate-bundle

A bundle for TextMate/Sublime Text providing syntax highlighting for x86 assembly code.
MIT License
82 stars 24 forks source link

Bug when formatting line comment #17

Closed Haltarys closed 4 years ago

Haltarys commented 4 years ago

When the following code is saved, an extra space is added before each semi-colon. This happens EVERY TIME the file is saved.

mov rax, 0 ; blah blah
           ; line comment

For example, when I save 3 times in a row, I get

mov rax, 0    ; blah blah
              ; line comment
13xforever commented 4 years ago

This package only provides highlighting. There's no language server, type checker, or code formatter of any kind. It literally just a YAML file.

Just tried to reproduce and as expected, nothing happened. You have some other package or setting that does this.