Peter L
Peter L
It would be nice if Site ID was not limited to `u32` as a datatype, and instead could be anything that implements the traits needed to function. (I.e, Serde traits...
Duplicate of https://github.com/onivim/oni/issues/1712 but I have tested this against the wiki config: Tested with the following config.js: ```js module.exports = { "language.rust.languageServer.command": "rls" } ``` Does not work: : ``` Compiling librocksdb-sys v5.11.3 (file:///home/rust/src/rust-rocksdb/librocksdb-sys) error: failed to run...
So I'm wondering if there is a way to either support word wrapping when writing text so newlines are automatically inserted, or provide some metrics around glyph sizes so it...
Version of VSCode: 1.17.2 Version of the extension: 0.4.2 OS: Mac OS X Description: When trying to open the rust source for standard libs via `cmd + click` or `f12`,...
What I'd like to do is something like this, so I can use some of the struct fields within the response: ``` extern crate shio; use shio::prelude::*; use shio::Handler; struct...
Following from https://github.com/hyperium/hyper/issues/1328 Currently the type signature of the shio::Response is heavily coupled to hyper::Body: ``` pub struct Response { pub inner: hyper::Response, } ``` And setting the body requires...
This may already be handled in another way, but I can't for the life of me work it out. Using the [HTTP Stream](https://github.com/mehcode/shio-rs/blob/master/examples/proxy/src/main.rs) example, say you wanted to convert this...