raymond-w-ko / vim-lua-indent

A somewhat better Lua indent script for Vim
MIT License
11 stars 6 forks source link

Unindent 'then' on a line by itself #5

Open idbrii opened 2 years ago

idbrii commented 2 years ago

Unindent a solitary 'then' to separate the if conditions from the if body.

Example:

if true
    and false
then
    print()
end

Add vader test.