kotauskas

Results 53 comments of kotauskas

Well, folding in VSCode works for me.

I'm using the latest VSCode, latest RLS on `stable-x86_64-pc-windows-msvc` and latest [RLS for VSCode](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust "Rust (rls)") without any other special setup.

> > > Can you paste a simple code example that demonstrates how it works? Do you use region tags? > To clarify, I would like to be able to...

> Are you building Debug or Release. The default is Debug. @dj2 I'm not building it myself. The readme links to [this](https://storage.googleapis.com/shaderc/badges/build_link_windows_vs2017_release.html) file.

Yeah, I opened a PR (#50) sometime before on this topic. I actually solved this the same way, by replacing `>` with an `-o`.

I don't get why #15 is considered breaking. `Rhs=Self` should keep it compatible.

IMO the `Result` type should not be added just yet and still be postponed for 1.0 or future 0.x releases, and `Rhs=Self`, something that I really need for [`bigbit`](https://crates.io/crates/bigbit) now,...

> How about introducing to the conversion traits `try_from` method in addition to `from` `From for T` implies `Into for U`, which, in turn, implies `TryFrom for T` with `Infallible`...

`async-std` currently doesn't support Windows named pipes as far as I'm aware, so local sockets, the cross-platform IPC stream primitive that's the flagship feature of Interprocess, won't be available unless...

Yup, that's a really weird typo in `is_supported()`. No clue how it got there. I'll make sure to fix it in the 1.2.0 release. A quick workaround would be: ```rs...