openmultiplayer / vscode-pawn

VS-Code extension for pawn language
https://open.mp
MIT License
16 stars 6 forks source link

Incorrect variable formatting #3

Closed mysy00 closed 1 year ago

mysy00 commented 1 year ago

As discussed on Discord. Everything works fine when we move the first defined array to the line with static or if the first variable isn't an array.

Before:

static
bool:a[0],
Float:b[MAX_PLAYERS];

After:

static
bool:a[0],
                         Float:b[MAX_PLAYERS];
AmyrAhmady commented 1 year ago

fixed