Sebastian Pfitzner

Results 722 comments of Sebastian Pfitzner

I recommend downgrading to an older version of Atom. It's unlikely this will be fixed (and Atom's package manager will stop working soon anyways).

I ran into something like this when trying to install the package, but removal of Conda/PyCall.jl and their caches (`~/.julia/conda`) and subsequent re-installation fixed it for me. Full logs ```...

Do you know *why* that helped?

Ah, yeah, that totally makes sense -- we're not handling the initial set up for a few startup options correctly when connecting to an external REPL. Should be a fairly...

https://github.com/microsoft/vscode/issues/70444

Sure, but I still don't quite see the motivation for this.

It's not widely used at least: https://juliahub.com/ui/Search?q=export%20%28&type=code&f=.jl.

Yeah, that's not required. Julia doesn't care about leading whitespace common to all lines inside of the string, cf ``` julia> x = """ """ "" julia> x = """...

They are only different based on the distance between `ab` and the closing quotes. The formatter needs to keep the string content the same without taking common leading whitespace into...

Imho we should never indent multi-line strings by less than the surrounding code. IIRC CSTParser handles multi-line strings with common leading whitespace fairly well, so _maybe_ it'll be easy to...