David Anthoff
David Anthoff
I (briefly) looked into this. @pfitzseb is the reason we opt-out of the regular sigint handling that we don't want that to happen during the execution of our REPL code,...
But Ctrl+C _does_ work on Windows in a terminal? And I briefly looked at the code, to me it looks as if Julia is registering a signal handler on Windows...
Ah, I think I remember what the original problem was: we couldn't sent the `SIGINT` signal to the Julia process from the extension on Windows, i.e. `process.kill(pid, 'SIGINT')` doesn't work...
While I think that https://github.com/julia-vscode/julia-vscode/pull/3758 might get us the same behavior we have in a regular terminal, it probably is blocked by an upstream Julia bug https://github.com/JuliaLang/julia/issues/56977 at the moment.
> one plan forward is to use Juliaup to install the Julia installation that the app is currently configured for if it does not exist. That way you would not...
I think I would prefer that we just update the error message to be correct ("Something like `release is pointing to X, but you have Y`"). With this PR we...
If this happens again, could you run `juliaup info` and report the output here?
I believe @DilumAluthge was just looking at the list as pasted in the comment here, where there are two 3) items. It is all correct in the PR that modifies...
Just as a FYI, this would require a lot more work, as we need to integrate all of this into the MSIX installer story.
As it stands, that is by design. We _always_ ship a version of _Juliaup_ that statically links musl on Linux even on GNU systems. The main reason is that we...