Debugger.jl icon indicating copy to clipboard operation
Debugger.jl copied to clipboard

Julia debugger

Results 71 Debugger.jl issues
Sort by recently updated
recently updated
newest added

Hi, I am using vscode and trying to debug [this repo](https://github.com/FishAres/RNP/blob/master/scripts/vae_mnist.jl), I set break point at line 32 https://github.com/FishAres/RNP/blob/c9571301627cb4989a7cada18de168bc257fc03d/scripts/vae_mnist.jl#L32 then press F5 for debug, but my computer keep running and...

Environment: ``` Julia Version 1.8.0-beta3 (2022-03-29) [31a5f54b] Debugger v0.7.6 ``` log: ``` In #43(io) at /home/user/usr/local/julia/julia-1.8.0-beta3/share/julia/stdlib/v1.8/REPL/src/REPL.jl:261 257 258 function display(d::REPLDisplay, mime::MIME"text/plain", x) 259 x = Ref{Any}(x) 260 with_repl_linfo(d.repl) do io...

The hash function `Base.hash(x::T, h::UInt)` from InlineStrings.jl works fine when run normally but `@enter hash(x, h)` throws a `TypeError`. ``` julia> x = String3("a") julia> h = UInt(0) julia> @enter...

``` julia> using StaticArrays, Debugger julia> x = rand(3, 3); julia> f(x) = SMatrix{3,3}(x); julia> @enter f(x) In f(x) at REPL[5]:1 >1 1 ─ %1 = Core.apply_type($(QuoteNode(SMatrix)), 3, 3) 2...

With the function ``` function f() var"1"=2 return 1 end ``` running `@enter f()` followed by `fr` gives the result: ``` | 1::Int64 = 2 ``` Ideally, this would print...

This would be the equivalent of `p x` in gdb. Having ` is nice, but, a lot of the time, I just want to look at a single variable, and...

Requires https://github.com/Keno/VT100.jl/pull/19

As of now, I can't tab-complete something like `\theta` to get the unicode symbol as I can in the normal Julia REPL. This makes watching variables more difficult, as I...

good first issue

Would it be possible to add macros to activate/deactivate 'compiled mode' in a similar way to the breakpoint macro `@bp`? For example, if I have a program that has a...

Likely related to keyword arguments. Did not manage to find a MWE just yet, but this should reproduce it: ``` $ pkg st Status `/tmp/tmp.NYFUEV6YuR/Project.toml` [31a5f54b] Debugger v0.6.8 [98b081ad] Literate...