Amin Ya
Amin Ya
We can probably add a note to the readme explaining an example
@slightknack Are you using atom-ide-base or atom-ide-ui? > (Oh, and tooltips won't show up for standard library items) I can't reproduce this. See the screenshot in the readme
> atom-ide-base. I have atom-ide-ui installed, but it's disabled. Let me know if you need any other diagnostic/system info. Thanks! Does it work if you temporarily enable atom-ide-ui?
This is ready to go. Let me know if there is any feedback. The MIR test is irrelevant to this pull request, and it is also happening on the master...
> I'm wary of adding platform-specific functionality to this crate so this may best live elsewhere. The `dbghelp.rs` file alone isn't the most complicated to copy for something like that....
Well, if someone wants to make their build intentionally single-threaded, they can set `JOBS` to 1.
So, you mean people want to make the build n times slower just not to grab such a small build dependency? I haven't seen a build system that intentionally makes...
It is not possible to enable a feature when you run `cargo install` . Run `cargo install outdated` and wait for the build to happen very slowly. The time it...
> I believe I am supposed to source some `vcvars` batch file, and that would set `%PATH%` correctly, but as the build has to use a bash-like shell, I kinda...
Adding this to `.cargo/config.toml` (in the project) forces using lld ``` [target.x86_64-pc-windows-msvc] rustflags = ["-C", "linker=lld"] ``` You can use it for all the targets by the following, but it...