Results 62 comments of cschen

After checking the code, and try to guess where it was taking bad informations, I suspected that I had some issues with the installation folders. I tried to uninstall and...

I have a custom filesystem in `~/.local/` that mimicks the `/usr/local/` structure, where I have a `bin` folder in the `PATH` where I symlink binaries from various packages. At the...

I found that the main issue is me symlinking the juliaup binary to `~/.local/bin/`. Since at that point when generating the paths in [global_paths.rs](https://github.com/JuliaLang/juliaup/blob/main/src/global_paths.rs), `my_own_path` resolves to `~/.local/bin/juliaup` therefore, `juliaupselfbin...

> I believe this is no longer an issue. I can make a PR with what was proposed above, if that is what you mean. Or maybe my use case...

Not really handy with VSCode yet, how do i access such insider channel?

I switched versions, run again, I am not seeing any stacktrace in the VS exstension log (is there that i should check?) albeit the language is still stuck on indexing...

I don't know if it's relevant, but i encountered a similar situation and found a possible solution to the problem of @PedDavid . I wanted to bind a command to...

@PedDavid Well, in your case then it is working exactly as expected. The default reading mode is on the press event. Besides, trying to map a command to the single...

From the `install_version` function there is the code: ``` eprintln!( "{} Julia {}", style("Installing").green().bold(), fullversion ); ``` that prints `fullversion`, it could be easily extended to add some channel information:...

Nice to have this alternative! I took a look, it all seems good, and actually clears up a lot of the code, which is nice. I didn't want to touch...