Claire Foster

Results 660 comments of Claire Foster

I'm not sure I don't use macOS. It might be a setting on your terminal emulator https://apple.stackexchange.com/questions/1391/equivalent-to-alt-in-terminal ?

Just a word of warning that while `Pkg.pin("PyPlot", v"2.3.1")` did fix some odd issues for me with `Conda`, it had the side effect of breaking the console plotting defaults GUI...

Tokenization of postfix `'` is context-dependent so I bet this is a tokenization error. Let's see... ```julia julia> collect(JuliaSyntax.Tokenize.tokenize(":+'")) 4-element Vector{JuliaSyntax.Tokenize.Tokens.Token}: 0-0 OP 1-1 OP 2-2 ERROR 3-2 ENDMARKER julia>...

Looks great to me, I just wasted a little time being confused by the two locations of documentation for this package. If there are "real" docs with real doctests, it's...

Hmm. Looking at the conflicts, not all changes to the README have been done in the docs. Even more reason to do this (but now can't merge a straightforward version...

Coming here from https://github.com/JuliaArrays/StaticArrays.jl/issues/815. I'll let others debate about whether the machinery is worth it :) A small note - I'm not sure you want the value `k` in the...

So rather than `names` we'd use `propertynames` I suppose. (Side note: I'm not sure why Base even has the distinction between `names` and `propertynames`, given that access to module bindings...

Cool, I've added * A little something to the docs * tests, particularly that this is fully inferred when a const name is supplied * `propertynames` so that tab completion...

CI failures seem to be an unrelated problem in a different test (only on julia master)

Oh, excellent point, I didn't know about that the `private` flag to `propertynames`. Fixed now + extra tests added.