1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-18 17:02:06 +03:00
kakoune/test/indent/lua/insert-end-only-when-needed/out
2018-03-04 10:36:32 +11:00

15 lines
122 B
Plaintext

function fun1()
foo()
end
function fun2()
foo()
end
function fun3()
if true then
foo()
end
end