Folke Lemaitre
Folke Lemaitre
Makes sense! However, I currently have a bunch of changes for `win` as well and will need to properly check this PR. I'm leaving on vacation on Sunday, so don't...
It took me a loooong time, but I finally looked into it, made some small changes and merged. Thank you!
not interested in adding this. Thank you though
bug v3: Order of entries changes, when jumping to next entry in a trouble telescope or quickfix list
That's actually because of the default sort for some sources. This is the default for `diagnostics` for example: ```lua sort = { { buf = 0 }, "severity", "filename", "pos",...
bug v3: Order of entries changes, when jumping to next entry in a trouble telescope or quickfix list
And `quickfix` is the same as `qflist`. I don't fully rememeber, but I probably kept that for backward compatibility.
bug v3: Order of entries changes, when jumping to next entry in a trouble telescope or quickfix list
Changed all the views to remove the `buf = 0`, so should no longer happen
bug v3: Order of entries changes, when jumping to next entry in a trouble telescope or quickfix list
@tummetott seems I forgot to remove that `buf = 0` filter for telescope. Fixed now.
bug v3: Order of entries changes, when jumping to next entry in a trouble telescope or quickfix list
You can try `opts.modes.telescope.sort = {}`. Not 100%, but this probably does use the order of items as you saw it in Telescope. You'll probaly also have to set `opts.modes.telescope.groups...
The only problem is that your code is **completely** wrong now. That returns a generator, but right now it will loop over all data every time. Really weird that this...
If indexing of oldfiles is an issue, then put it in a separate list before the function() and use the new list inside the function with the original (correct) code.