nvim-telescope / telescope-frecency.nvim

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

feat: `hide_current_buffer` option #176

Closed delphinus closed 4 months ago

delphinus commented 4 months ago

Fix #175

With the new option:hide_current_buffer, frecency does not show the buffer the cursor was on when :Telescope frecency is called.

-- Set this in startup
telescope.setup {
  extensions = {
    frecency = {
      hide_current_buffer = true,
    },
  },
}
-- Overwrite config setting
:Telescope frecency hide_current_buffer=true
TylerBarnes commented 4 months ago

Amazing!! 🙌 thank you! It works perfectly 💪