Fredrik Ekre

Results 137 issues of Fredrik Ekre

Sometimes it would be useful to link directoy to admonitions and I think we should generate anchors for them.

Type: Enhancement
Format: HTML

I often click on docstring headers in order to copy the URL pointing to it. This folds the docstring which is a bit annoying. Would it be possible to reduce...

Type: Enhancement
Format: HTML

I think it would be neat to be able to do e.g. ```julia Pkg.add(name = "Example", version = "^1.2") ``` The default meaning of `version` have `=`-semantics though which is...

```julia julia> using Debugger julia> function g() io = IOBuffer() return io end g (generic function with 1 method) julia> function f() x = g() println(x, "hello") end f (generic...

For example: ``` julia> function f() x = rand(4) @info "hello" y = rand(4) return x, y end f (generic function with 1 method) julia> @enter f() [ Info: Loading...