PSeitz

Results 106 comments of PSeitz

This should be provided natively from CTags, a colleague uses this function in Emacs with CTags.

Universal-ctags (as well exuberant) has the function prototype feature. I implemented it for C++ here: https://github.com/PSeitz/CTags/commit/24798f04d5b743097be2577bdc4b33a47c52b5b3

I have the same issue, altough my project size is pretty small (10 files, 1000 lines total)

I did some experiments after your comment on reddit last time. The unsafe version was faster, since there was still some overhead in comparison to the pointer approach. In the...

Sorry for the late reply. I agree that two different API has some advantages for soundness and documentation. Initially I kept them together to minimize the code size and add...

Hi, generally yes, I would really like to have it in `lz4_flex`. I did some experiments some time ago, but they are outdated now. I think conceptually it should be...

The svgs are generated by criterion and have no background defined. if you click on them they should be rendered fine

Sorry for the late reply, but yes that's exactly how the dictionary works.

Thanks for the issue, yeah I also thought about that. It would be nice to have, but I'm not sure how good it can be managed to have both in...

Currently the behaviors are provided by tantivy. As an alternative, we could have a registry. ``` global_registry.register_attribute(name, &str, attribute: Attribute); // name has to be unique trait Attribute{ fn merge(attrs:...