Ryan Leckey
Ryan Leckey
Signed-off-by: Ryan Leckey
See: https://github.com/jonathantneal/postcss-color-mod-function/issues/37#issue-606237601
I've talked a bit about this before in other places. I started an experiment for improving the `linter`'s panel. Now that `atom-ide-ui` is the "official" solution I'd like to try...
### Description Editor datatip does not use ui theme font size (but buffer data tip does). I have a 2k monitor on linux and set my ui theme font size...
https://github.com/servo/core-foundation-rs/blob/36d7c972feeeb4a93879e76ac0b9d410cb6130b8/core-foundation/src/array.rs#L66-L74 --- Elements in CFArray are pointers. It should be ok to allow storing raw pointers, `usize`, etc. in the CFArray, but not any `Copy`-able.
Refs #200 --- Thoughts on this? These crates are frustrating to use in Rust. Adapting the Swift APIs would lead to a significantly better UX in the API. We could...
Currently, the async native_tls connector requires ownership to connect where as the sync one does not. This is in contrast to the async rustls connector which does not require ownership....
See https://github.com/mehcode/shio-rs/blob/v0.1.0/examples/middleware/src/main.rs Don't have time to expand on exactly what's going on there. I feel it's a much better interface than what we had. I'll be working more on this...
Currently to create a `Context` its .. _really hairy_. https://github.com/mehcode/shio-rs/blob/724880d5e5e644d63df096445b912a2fa36bcaf1/lib/src/router/mod.rs#L212-L215 We should be able to do something like: ```rust let context: Context = ContextBuilder::new(handle) // Set method on request in...
An (untested) idea for implementation: ```rust #[get("/user/profile")] pub fn user_get_profile(_: Context) -> Response { ... } // Becomes fn __user_get_profile(_: Context) -> Response { ... } pub static user_get_profile: ::shio::router::Route...