This fork adds scoped bookmarks and bug fix for when lines change so that bookmarks stay on their correct lines
- Implements https://github.com/tomasky/bookmarks.nvim/pull/15/files#diff-2f8e3693e6047f4e45e8fc632efc350d5b4456e695f4add9919b7cf993da8483 from @ ten3roberts
- Implements https://github.com/tomasky/bookmarks.nvim/commit/12bf1b32990c49192ff6e0622ede2177ac836f11 for out of range fixes
A Bookmarks Plugin With Global File Store For Neovim Written In Lua.
- Display different icons according to annotation keywords
- open bookmarks in a quickfix list
- search marks with Telescope
- Neovim >= 0.7.0
With packer.nvim:
use {
'tomasky/bookmarks.nvim',
-- tag = 'release' -- To use the latest release
}
For basic setup with all default configs using packer.nvim
use {
'tomasky/bookmarks.nvim',
-- after = "telescope.nvim",
event = "VimEnter",
config = function()
require('bookmarks').setup()
end
}
Here is an example with most of the default settings:
require('bookmarks').setup {
-- sign_priority = 8, --set bookmark sign priority to cover other sign
save_file = vim.fn.expand "$HOME/.bookmarks", -- bookmarks save file path
keywords = {
["@t"] = "☑️ ", -- mark annotation startswith @t ,signs this icon as `Todo`
["@w"] = "⚠️ ", -- mark annotation startswith @w ,signs this icon as `Warn`
["@f"] = "⛏ ", -- mark annotation startswith @f ,signs this icon as `Fix`
["@n"] = " ", -- mark annotation startswith @n ,signs this icon as `Note`
},
on_attach = function(bufnr)
local bm = require "bookmarks"
local map = vim.keymap.set
map("n","mm",bm.bookmark_toggle) -- add or remove bookmark at current line
map("n","mi",bm.bookmark_ann) -- add or edit mark annotation at current line
map("n","mc",bm.bookmark_clean) -- clean all marks in local buffer
map("n","mn",bm.bookmark_next) -- jump to next mark in local buffer
map("n","mp",bm.bookmark_prev) -- jump to previous mark in local buffer
map("n","ml",bm.bookmark_list) -- show marked file list in quickfix window
end
}
require('telescope').load_extension('bookmarks')
Then use :Telescope bookmarks list
or require('telescope').extensions.bookmarks.list()
- gitsigns.nvim most of lua functions come from this plugin
- vim-bookmarks inspired by this vim plugin
- possession.nvim some util functions