kakoune/test/indent/lua/insert-end-only-when-needed/out

31 lines
305 B
Plaintext
Raw Normal View History

function fun1()
foo()
end
function fun2()
foo()
end
function fun3()
if true then
foo()
end
end
function fun4()
if true then
return 10
else
foo()
end
end
function fun5()
if true then
foo()
return 10
end
local str = "while"
foo()