You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes I want a sorter without reordering of the list from the finder.
For example, when I'm finding files written recently.
In the case, I want to select them with matching fuzzy, but don't want to change the order of them.
Now, I use a workaround (described below).
It's complex a little, and it supports only static list (with finders.new_table).
Would you consider adding a sorter to the builtin that allows fuzzy matching without reordering?
Sometimes I want a sorter without reordering of the list from the finder.
For example, when I'm finding files written recently.
In the case, I want to select them with matching fuzzy, but don't want to change the order of them.
Now, I use a workaround (described below).
It's complex a little, and it supports only static list (with
finders.new_table
).Would you consider adding a sorter to the builtin that allows fuzzy matching without reordering?
My workaround for example, list from the most recently written/used files (with lambdalisue/mr.vim):
https://github.com/kyoh86/dotfiles/tree/main/nvim/lua/local/with/telescope_mru.lua#L1-L54
The key is a function named
recent_file_sorter
.The text was updated successfully, but these errors were encountered: