Azganoth / language-lua-plus

Lua grammar and snippets for Atom.
MIT License
6 stars 0 forks source link

Indent between parentheses. #3

Closed iTob191 closed 4 years ago

iTob191 commented 5 years ago

Adds the same indentation rules that are already there for curly brackets to parentheses. So typing func(↵param1,↵param2↵) results in

func(
    param1,
    param2
)

instead of

func(
param1,
param2
)
Azganoth commented 4 years ago

Thanks for this, @iTob191, your changes would remove the indentation for curly brackets so i added them here.