Streamlet

Results 3 issues of Streamlet

例如 原配置 (luna_pinyin.schema.yaml) ```yaml punctuator: half_shape: # ... "/": ["、", "、", "/", "/", "÷"] # ... ``` 我想改成 "/": "/",但不想把 half_shape 下的所有内容都抄一遍, 那么我理论上应该写成: (luna_pinyin.custom.yaml) ```yaml patch: punctuator/half_shape/: "/" ``` 此处...

bug

Isn't it that the osxcross tools contains all cross compile toolchain?

I noticed the following code in `ip.cpp` ```C++ #if __FreeBSD__ || defined(__FreeBSD_kernel__) || __APPLE__ if (!parent_pdu()) { total_sz = Endian::host_to_be(total_sz); header_.frag_off = Endian::be_to_host(header_.frag_off); } #endif ``` This conditionally reverses byte...