iosmanthus

Results 40 issues of iosmanthus

After I knew Clang is compatible with gcc, I realized I could use gnu c extensions' types or functions in clang. But clang_complete only completes the macros not the functions,...

![screenshot from 2016-05-29 09-30-59](https://cloud.githubusercontent.com/assets/16307070/15630876/a9e21504-257f-11e6-8011-67c3d40c74e0.png) // Move to another window ![screenshot from 2016-05-29 09-30-57](https://cloud.githubusercontent.com/assets/16307070/15630877/adcfdd04-257f-11e6-8cde-3f7b88905ca9.png) //Prev Is it a bug??

After adding trait bound `ToString` to `Cell::new()/Cell::new_align()`, maybe it will be more convenient to construct a row from another type because it will be unnecessary to transform the content to...

enhancement

with `V2Ray 4.44.0`, the following outbound configuration should work just fine: ```json { "tag": "trojan", "protocol": "trojan", "settings": { "servers": [ { "address": "172.18.0.2", "port": 8080, "password": "password" } ]...

I can't set bold font in NyaoVim.... :

Signed-off-by: iosmanthus This pull request is still working in progress, and the interfaces for request encoding are stable. However, lots of the request structs need to implement with these interfaces....

[KeySpace](https://github.com/tikv/rfcs/blob/master/text/0069-api-v2.md) is fundamental for transaction safety and multi-tenant features for TiKV. This is the tracking issue for the feature in client-rust. For tracking issues of other components, check: * TiKV:...

Could we add some roadmap or architectural outlook like [sled-architectural-outlook](https://github.com/spacejam/sled/wiki/sled-architectural-outlook)?

enhancement

[KeySpace](https://github.com/tikv/rfcs/blob/master/text/0069-api-v2.md) is fundamental for transaction safety and multi-tenant features for TiKV. This is the tracking issue for the feature in client-go. For tracking issues of other components, check: * TiKV:...

Maybe it will be more convenient to write the following code after adding trait `Step` for `BigInt`: ```rust for i in BigInt::from(1)..BigInt::from(1000) { // do something } ```