I like to write lists and list comprehensions in multiple lines like:
a = [
1,
2
]
This is fine in Julia, but In Juno, however, this doesn’t work. I have to write one of those two versions:
a = [
1,
2
]
begin
a = [
1,
2
]
end
Is it planed to enable writing the first version at some point or does anybody know how I can fix this in atom by myself?