julia-vscode / DocumentFormat.jl

Auto-formatter for Julia
Other
62 stars 18 forks source link

No Indention in finally clause #91

Closed laborg closed 4 years ago

laborg commented 4 years ago

If I format following code in vscode (ext 15.23)

function foo()
    try 
        println("")
    catch 
        println("")
    finally
        println("")
    end
end

it turns into

function foo()
    try 
        println("")
    catch 
        println("")
    finally
println("")
    end
end

which doesn't appear to be desired.