xiao80
xiao80
使用 amx 绑定 M-x 的时候,发现报错了,去看了下发现仅对smex,counsel,helm这些有支持。
``` python def encode_enum(self, val, state): """Encode a Python Enum value into JSON.""" eas = self.options.encode_enum_as if eas == 'qname': self.encode_string( str(obj), state ) elif eas == 'value': self._do_encode( obj.value,...
## Before creating a feature request - [x] I checked the *next* branch to see if the feature has already been implemented - [x] I searched existing reports to see...
看了下项目里处理拼音用了jian-pinyin这个库。看了下这个库似乎更合适web应用,在体积上面比较有优势,但是没有处理多音字准确性。 建议使用 [pinyin](https://www.npmjs.com/package/pinyin) 这个库,它会分词根据词组来匹配,能提高多音字准确性,更适合桌面应用。
### Zig Version 0.13.0 ### Steps to Reproduce and Observed Behavior ```zig const c = @cImport({ @cInclude("pwd.h"); }); pub fn main() !void { callback(c.getpwuid); } fn callback(cb: fn (c.uid_t) callconv(.C)...