What is the best way to format code without spaces around operators and symbols in VSCode while preserving PICO-8 syntax highlighting? #PICO8 #VSCode
NO THANKS:
local x, y, a = rnd(128), rnd(128), flr(rnd(4)) + d
I WANT:
local x,y,a=rnd(128),rnd(128),flr(rnd(4))+d
17 days ago