dhruvmanila / browser-bookmarks.nvim

A Neovim plugin to open your browser bookmarks right from the editor!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Refactor to be used by any fuzzy finder using `vim.ui.select`

dhruvmanila opened this issue · comments

Either of the following routes can be taken:

  1. Use vim.ui.select
  2. Support popular providers and use config option provider = 'telescope'

I'm leaning more towards (1) as most providers provide support to override the default implementation.

This will require updating the plugin name as well. For backwards compatibility, the telescope extension code will still be maintained.

Possible plugin name:

  • fuzzy-bookmarks.nvim
  • bookmarks-picker.nvim
  • browser-bookmarks.nvim

Initial implementation is in the feat/generic branch.