This is probably related to #155 (comment).
julia-mode indents the lines after after import Base: + (other arithmetic operators such as *, -, etc are also affected):
import Base: +
function Base.:(+)(foo::Bar)
# implementation here
end
import Base: *
function Base.:(*)(foo::Bar)
# implementation here
end
This is probably related to #155 (comment).
julia-modeindents the lines after afterimport Base: +(other arithmetic operators such as*,-, etc are also affected):