Code Beautification / Standardisation

Does Lua Glider have any code beautification functionality.

I am not sure “code beautification” is the right term.

Basically, it’s a thing for people with OCD that makes the source code a standard layout.

It does not change the code syntactically, just the layout.

I have used something before for Perl. It applies a style to the code.

eg. parameter lists (a,b, c, d) it will make into this ( a, b, c, d )

It can also check things like do variable names start with lowercase letter, and flag it if not.

And check indentation is consistent.

etc.

As I remember, there should be Ctrl + Shift + F for formatting the code. Can you check it out?

If that doesn’t work, you should be able to select the hot key for formatting from the options.

As I remember, there should be Ctrl + Shift + F for formatting the code. Can you check it out?

If that doesn’t work, you should be able to select the hot key for formatting from the options.