gustaphe

Results 35 issues of gustaphe

I ran into a bug, where the formatter will change the meaning of code: ```julia julia> 1 .|> (sin, cos) (0.8414709848078965, 0.5403023058681398) julia> format_text("1 .|> (sin, cos)"; pipe_to_function_call=true) "(sin, cos)(1)"...

bug

I've wanted to do this for a while, and it recently became much easier. Low priority, but maybe at least worth keeping in mind if we ever need to change...

#665 This is not quite done yet. Because of how extensions work I had to break two things from UnitfulLatexify. 1. Instead of i.e. `latexslashlabel(s, u)` it's `latexify(s, u; labelformat=:slash)`....

I wanted to lift the idea of merging UnitfulLatexify as an extension, now that those are possible. This will remove some user level friction, `using Unitful, Latexify` will just work....

**Describe the bug** If `~/.config/plover/plover.cfg` is a symlink to somewhere else, config changes made in Plover delete the symlink and create a new `~/.config/plover/plover.cfg`. **To Reproduce** Steps to reproduce the...

bug

Partial solution for #201 . Since it needs to be serializable, I opted for just a seed number. `seed!` is not super well documented, so `Int` may not be the...

enhancement

Partial implementation of #220, interpreting any benchmark group with numeric keys as a series with a size parameter for plotting purposes. (I frankly don't remember what I was doing that...

enhancement

I don't know if this is a system problem or what, but when running the Plots VRTs, I get this popup but no confirm dialog. ![image](https://github.com/JuliaPlots/VisualRegressionTests.jl/assets/6677110/7a5f2b2e-f880-4550-a0ab-0782934198be) The terminal also gets...

In GR, `\mathrm{x}^{y}` places the `y` too high. A workaround is to use `\mathrm{x^y}` (which looks right if `y` is a number...). This coud be an option, and set as...

Unitful.jl has `NoUnits`. It's a bit unfortunate, because it's not stable under arithmetic operations, so for instance `10u"NoUnits"` has type `Int64`. It's possible to generate a unitless quantity by `Quantity{Int64,NoDims,Unitful.FreeUnits{(),NoDims,nothing}}(10)`,...