Skip to content

v4.0.0

Latest
Compare
Choose a tag to compare
@dhruvmanila dhruvmanila released this 26 Mar 03:15

Breaking

Previously, the plugin allowed configuring via the telescope extension like the following:

require('telescope').setup {
  extensions = {
    bookmarks = {
      -- Provide the options here to override the default values.
      selected_browser = 'arc',
    },
  },
}

This creates the following problems:

  1. There are two ways to configuring the plugin
  2. Confusion in resolving which config to prioritize
  3. Telescope config always overrides the one provided via the setup call

Refer to #38.

This release removes the feature and provides a warning like the following:

Configuring the plugin using the telescope extension is deprecated. Please use the `setup` function from the main module: 
  
require('browser_bookmarks').setup({ 
  selected_browser = "arc" 
})

The warning will be removed in the next minor release.

Full Changelog: v3.2.0...v4.0.0