Kitsu

Results 42 issues of Kitsu

See [clickhouse.rs](https://github.com/loyd/clickhouse.rs) and [CH docs](https://clickhouse.com/docs/en/operations/system-tables/columns).

The following code fails at the second assertion: ```rust let cache = FcFontCache::build(); assert!(cache .query(&FcPattern { name: Some("DejaVu Sans Mono".into()), ..Default::default() }) .is_none()); assert!(cache .query(&FcPattern { monospace: PatternMatch::True, ..Default::default() })...

Quite strange highlighting for case ranges: ![screenshot-thu-dec--7-18 53 30-msk-2017](https://user-images.githubusercontent.com/5658339/33724300-2177df60-db80-11e7-9da7-02a596fcb304.png)

At example test.rs, fontconfig chooses a font with a file name "luRS08-ISO8859-1.pcf.gz" which leads to `thread 'main' panicked at 'Error constructing Font'`. This patch simply forces to use font with...

Hey! I've tried to check fabric benchmarks but something went wrong Run via: ```sh npm install && npm install fabric{,-ca}-client node benchmark/simple/main.js ``` ```bash **** End-to-end flow: testing 'open' ****...

It's quite handy to have an alias rather than manually recreating the internal type. ```rust fn make_builder() -> FooBuilder { .. } // vs fn make_builder() -> FooBuilder { .....

TLDR, for a given config: ```toml group_imports = [ ["$std::*", "proc_macro::*"], ["*"], ["my_crate::*", "crate::*::xyz"], ["$crate::*"], ] ``` The following order would be set: ```rust use proc_macro::Span; use std::rc::Rc; use rand;...

pr-not-reviewed

The implementation provides a hard-coded limit of 3 restarts per LSP stored at `Client`. On each restart it basically reduces the counter and spawns a job for starting LSP. Resolves...

A-language-server
S-waiting-on-review

In the doc the section is missing so I guess it's unimplemented. It would be handy to have it similar to serde: https://serde.rs/enum-representations.html#untagged

enhancement

Motivation: - errors are slightly better; - most derive crates are using it so no need to build 2 syn crates.