Sebastian Pfitzner

Results 121 issues of Sebastian Pfitzner

Need to figure out how to properly pass signals through the ssh tunnel or something like that.

bug

by using something like [`dialog.showOpenDialog`](https://github.com/electron/electron/blob/master/docs/api/dialog.md#dialogshowopendialogbrowserwindow-options-callback). Not sure how necessary this is, but might be useful.

enhancement

Fixes https://github.com/JuliaDebug/Debugger.jl/issues/134.

or something like that. MWE: ``` julia> function f() @info "info" foo=:bar @bp x = sin(2.0) return x end f (generic function with 1 method) julia> frame, bp = @interpret...

See https://discourse.julialang.org/t/debugging-function-like-object-under-juno/26079. Smaller repro is ``` struct FunLike value::Int end function (f::FunLike)(x) y = sin(3) f.value end f = FunLike(3) f(3) ``` where ``` julia> @code_typed f(3) CodeInfo( 1 ─...

bug

Should either automatically open a new tab in the default browser (might require a dependency on Mux or a HTTP.jl based server implementation, like what Juno does).

enhancement

This came up on slack at some point: ``` Peter Deffebach 5 days ago Stata is still my favorite IDE for working with data stuff. The UI for their Data...

Trace: ``` [Trace - 21:58:35] Sending notification 'textDocument/didChange'. Params: { "textDocument": { "uri": "untitled:Untitled-3", "version": 68 }, "contentChanges": [ { "range": { "start": { "line": 0, "character": 0 }, "end":...

bug