RasmusTidselbak / al-var-helper

6 stars 6 forks source link

Sort variables by type #7

Closed AddEleven closed 5 years ago

AddEleven commented 5 years ago

Is there functionality to sort variables based off type. EG:

var TestBoolean: Boolean; Customer: Record Customer;

would become after sorting

var Customer: Record Customer; TestBoolean: Boolean;

RasmusTidselbak commented 5 years ago

The command "AL-Var: Sort Variables" does just that

AddEleven commented 5 years ago

Nice! Thanks :)