Simon Hauser
Simon Hauser
Looks cool but yeah agree. For now i would schedule this for after the release
I don't guarantee completeness: https://github.com/nvim-telescope/telescope-fzf-native.nvim#disclaimer because its not a 1:1 copy of the go code. But this looks like a bug in my prompt parsing. I'll look into it if...
finally found some time fixing this issue: https://github.com/nvim-telescope/telescope-fzf-native.nvim/pull/56 Could you try out this PR? dont forget to rerun make :) Thanks Also please mention if you found any regressions, the...
`!a | !b` is also borked
thanks :)
It turns out that c is pretty fast (thats singlethreaded) ``` hyperfine --warmup 3 "./build/cli fzf.h < files" "fzf --filter fzf.h < files" Benchmark #1: ./build/cli fzf.h < files Time...
yeah 65% faster if i read the output correctly :rofl: ``` hyperfine --warmup 3 "./build/cli fzf.h < files" "fzf --filter fzf.h < files" Benchmark #1: ./build/cli fzf.h < files Time...
All of this sounds good. I think you are way more qualified doing this than i am. :laughing: But we are not stopping making telescope faster. The idea here was...
I was talking about the data structure [heap](https://en.wikipedia.org/wiki/Heap_(data_structure)), like i implemented here in this PR. [max-heap](https://en.wikipedia.org/wiki/Min-max_heap)( to be more specific). I wasnt talking about allocation. fzf-native actually only calculates the...
resolved by #81