Mauro
Mauro
It would be nice to have a command which finished the current block, i.e. probably most useful to finish the current loop, without having to set a breakpoint after the...
The "official" website is now hosting porn. Would be good to remove the links to that website from this github page & Readme.
Sometime it would be nice to be able to turn Revise off on the fly. For instance if I want to compare one branch vs another. Or I want to...
This errors: ```julia using OrdinaryDiffEq, Sundials, RecursiveArrayTools function problem!(du, u, p, t) h, ϕ = u.x dh, dϕ = du.x dh .= 0.5 * h dϕ .= 0.1 * ϕ...
When writing multiline strings I'd like to use `fill-paragraph` (`M-q`) to make line feeds where needed. Example: ``` julia """ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis facilisis...
It would be nice if figures produced from simulations had the info to reproduce them associated with them. Maybe as metadata tags (which most formats support)? I'm just putting this...
With https://github.com/MikeInnes/MacroTools.jl/commit/c41c09b269a8dc0001a012788def26553593cc90 the `@match` documentation was removed. Was that intentional? The commit title doesn't suggest so.
The show method seems to to some rounding with particles in an array: ```julia julia> [10000+i ± 0.5 for i=1:10:50] 5-element Array{Particles{Float64,2000},1}: 10000.0 ± 0.5 10000.0 ± 0.5 10000.0 ±...
This seems inconsistent: ``` julia> NaN ± NaN ERROR: ArgumentError: Normal: the condition σ >= zero(σ) is not satisfied. julia> NaN ± Inf Particles{Float64,2000} NaN ± NaN ```
It would be cool, if interpolation into md-strings worked. For example: ```julia result_of_some_calc = 3 md""" The result of this tricky calculation is $result_of_some_calc """ ``` currently produces via `Literate.notebook("tmp.jl",...