japhib / pico8-ls

PICO-8 Language Server
MIT License
64 stars 8 forks source link

Wrong formatting on comment after function #53

Open ahai64 opened 5 months ago

ahai64 commented 5 months ago

Wrong formatting on comment after function

original:

afunction(parameter)--comment

should have been:

afunction(parameter) --comment

in fact:

afunction(parameter--comment)