I am trying the Julia
plugin by @mgubi from https://github.com/mgubi/tm-julia/tree/main and it works great. However it seems to have a strange auto-indentation issue, after the writing first line in a Julia session, going to the second line puts a TAB
automatically on the second line, but from the third line and beyond there is not such auto-indentation. So the code ends up looking like this:
>>> function test(x)
println("hello world") # this indentation happens automatically
return x # no indentation from this line and beyond
end
and as a result, the code looks very odd. Of course, one can always manually use backspace to remove the TAB
indentation on the second line, but this can get tedious. Is there a way to suppress the auto-indentation on the second line in the Julia sessions?