Skip to content

v2.4.0

Latest
Compare
Choose a tag to compare
@LintaoAmons LintaoAmons released this 31 Dec 04:23
· 1 commit to main since this release
3323bfe

RELEASE NOTE: Added automatic database backup feature. Bookmarks database is now automatically backed up after Neovim starts (configurable delay). Example config:

require('bookmarks').setup({
  backup = {
    enabled = true,      -- enable/disable backup
    -- Directory to store backup files
    -- Default: vim.fn.stdpath("data").."/bookmarks.backup"
    -- You can set a custom directory
    ---@type string?
    dir = '~/.backups',
    delay = 5           -- delay in minutes before backup starts, no back will be created if nvim earlier than the actually backup time
  }
})

What's Changed

Full Changelog: v2.3.0...v2.4.0