Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- Source: https://www.reddit.com/r/neovim/comments/1js5bg8/harpoon_in_50_lines_of_lua_code_using_native/
- for i = 1, 9 do
- local mark_char = string.char(64 + i) -- A=65, B=66, etc.
- vim.keymap.set("n", "<leader>" .. i, function()
- local mark_pos = vim.api.nvim_get_mark(mark_char, {})
- if mark_pos[1] == 0 then
- vim.cmd("normal! gg")
- vim.cmd("mark " .. mark_char)
- vim.cmd("normal! ``") -- Jump back to where we were
- else
- vim.cmd("normal! `" .. mark_char) -- Jump to the bookmark
- vim.cmd('normal! `"') -- Jump to the last cursor position before leaving
- end
- end, { desc = "Toggle mark " .. mark_char })
- end
- -- Delete mark from current buffer
- vim.keymap.set("n", "<leader>bd", function()
- for i = 1, 9 do
- local mark_char = string.char(64 + i)
- local mark_pos = vim.api.nvim_get_mark(mark_char, {})
- -- Check if mark is in current buffer
- if mark_pos[1] ~= 0 and vim.api.nvim_get_current_buf() == mark_pos[3] then
- vim.cmd("delmarks " .. mark_char)
- end
- end
- end, { desc = "Delete mark" })
- — List bookmarks
- local function bookmarks()
- local snacks = require("snacks")
- return snacks.picker.marks({ filter_marks = "A-I" })
- end
- vim.keymap.set(“n”, “<leader>bb”, list_bookmarks, { desc = “List bookmarks” })
- — On snacks.picker config
- opts = {
- picker = {
- marks = {
- transform = function(item)
- if item.label and item.label:match("^[A-I]$") and item then
- item.label = "" .. string.byte(item.label) - string.byte("A") + 1 .. ""
- return item
- end
- return false
- end,
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement