Michael Hatherly

Results 39 issues of Michael Hatherly

Currently if you define a recipe that includes `label`led plots internally `Legend` doesn't pick them up, it seems to only handle the "top layer" of plots in an `Axis`. ```...

Currently `Dash.jl` (and the related component packages) hardcode paths to resources into globals, see https://github.com/plotly/Dash.jl/blob/dev/src/Dash.jl#L5-L6 for example. This means that the package cannot be used along with https://github.com/JuliaLang/PackageCompiler.jl since that...

From the documented behaviour of `JULIA_DEPOT_PATH` in https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_DEPOT_PATH I'd expect passing an empty segment in `JULIA_DEPOT_PATH` to still launch `julia`, but `juliaup` throws an error when it's provided, as shown...

bug

When faceting a plot over a large number of columns/rows (or just wrapping with `layout`) the size of the plots can sometimes become quite unwieldy and requires manual intervention to...

Given the below recipe `Makie` will dispatch to the right method when given input `x` of type `CategoricalVector` to `myrecipe(x, y)`. ```julia using CairoMakie, AlgebraOfGraphics, CategoricalArrays @recipe(MyRecipe, x, y) do...

Currently if you try to unpack a result from `delayed` into several bindings on the lhs ```julia-repl julia> using Dagger julia> swap(a, b) = b, a swap (generic function with...

enhancement

More of a question than a feature request really. Is support for `\begin{align}` (and other block environments) a planned feature that may be implemented here at some point, or is...

(I might have completely overlooked it if it's already implemented?) I'd like to check whether a given path exists in a `FileTree`, such as ``` t = FileTree(".") "my/file.ext" in...

Related to #6: - literal suffixes aren't supported for any of the literal syntaxes, i.e `` r"..."i `` for regex flags. - triple-backtick command literals aren't implemented, - triple-strings and...