nvim-telescope / telescope-frecency.nvim

A telescope.nvim extension that offers intelligent prioritization when selecting files from your editing history.
MIT License
730 stars 36 forks source link

fix: detect case sensitive filenames #229

Closed delphinus closed 1 month ago

delphinus commented 1 month ago

Fix https://github.com/nvim-telescope/telescope-frecency.nvim/issues/207

Now frecency.validate_database detects case sensitive filenames and delete if it is not found. For example, now it deletes foo.lua even if Foo.lua still exists.

For performance issue, this function is now an async function, so you should wrap it with async.void to call.

delphinus commented 1 month ago

This problem will be solved in #232