jtrakk

Results 94 issues of jtrakk

Replaces `substitute(e,d,fold=true)` with `evaluate(e,d)`, and replaces `substitute(e,d,fold=false)` with `substitute(e,d)`. This changes the no-kwarg default behavior of `substitute(e,d)` from `fold=true` to `fold=false`, which is more consistent with the name. See discussion...

It feels like Emacs Magit status appears more quickly than edamagit status. I don't have numbers, but I'd guess edamagit takes 20-500 ms longer than Emacs Magit on some open...

enhancement

When deleting multiple files, there should be only one confirmation prompt, with a list of n files, not n confirmation prompts.

[magit-wip-mode](https://magit.vc/manual/magit/Wip-Modes.html) keeps track of uncommitted work in progress automatically in the background. This is like a persistent undo. It's very nice for when I haven't committed yet but I want...

feature request
magit parity

If I pass a primitive type where the ORM is expecting a Model instance, it gives this difficult error message. Especially when I have a complicated object, I have to...

bug
performance
quagmire

The readme warns > We expect that any time you use the `@turbo` macro with a given block of code that you: > > Are not indexing an array out...

I want to serialize `Month` and `Year` etc. They do not have a unique representation in terms of seconds, so I try to serialize them directly. ```jl using Dates, Arrow...

```jl julia> uconvert(u"hr/mi", 3u"mi/hr") ERROR: DimensionError: hr mi^-1 and mi hr^-1 are not dimensionally compatible. ``` Python's Pint library says ```jl DimensionalityError: Cannot convert from 'minute / meter' ([time] /...

enhancement

It could be convenient to have a `show(MIME("text/latex"), x)` or `Latexify.latexify(x)` for kernel functions.

I know there is `AlgebraOfGraphics.density()` but I would also like `visual(Density)` to work. `strokecolor` doesn't work in the `mapping`. ```jl let n = 100 (data((;a=rand(n),c=rand('a':'e', n))) * mapping(:a, strokecolor=:c) *...