Daniel Mendler
Daniel Mendler
@oantolin I think using a separate completion style is the way to go. We introduced orderless-define-style in particular for this purpose. It won't be faster for words of the form...
I am not sure I understand you fully here, but orderless style dispatchers allow at least to prefix the first component with "^". In Orderless almost nothing is hard coded,...
Maybe the style dispatchers I am using are helpful for your use case: https://github.com/minad/consult/wiki#orderless-style-dispatchers-ensure-that-the--regexp-works-with-consult-buffer. My configuration has a bit of special casing for Consult and Corfu completion-in-region and is a...
If you really want to insert initial input by default you can do this: ~~~ elisp (advice-add #'vertico--setup :after #'insert-circumflex) (defvar insert-circumflex-exclude nil "List of commands where circumflex should not...
@sharkdp I have a use case where it would be very useful if `fd` supported multiple patterns combined with AND. As you write in your https://github.com/sharkdp/fd/issues/315#issuecomment-841869872, you don't want to...
@sharkdp I have an [Emacs file finder frontend ](https://github.com/minad/consult) which can use find or fd as backend. This frontend supports a matching style we call "orderless" matching, where you enter...
@justinethier My recommendation would be to allow cyclone to be compiled with both gmp and tommath backends, this is also what I am doing in another language implementation. The backend...
@justinethier I made an attempt to implement a tiny embeddable bignum library which can optionally use the fast non-allocating mpn_* primitives of GMP. The library is just a thin wrapper...
@arthurmaciel I am proposing something else now. I think the only provided implementation should be GMP, more specificially the low-level mpn functions, which can be used nicely in a garbage...
@arthurmaciel Regarding performance, my baseline implementations should be approximately as fast as GMP for small numbers. This will degrade quickly however for larger numbers. Maybe additional to the baseline karatsuba/toom...