Advertisement
Elfik

Harpoon in 50 lines of lua code using native global marks

Apr 5th, 2025 (edited)
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.63 KB | None | 0 0
  1. --- Source: https://www.reddit.com/r/neovim/comments/1js5bg8/harpoon_in_50_lines_of_lua_code_using_native/
  2.  
  3. for i = 1, 9 do
  4. local mark_char = string.char(64 + i) -- A=65, B=66, etc.
  5. vim.keymap.set("n", "<leader>" .. i, function()
  6.   local mark_pos = vim.api.nvim_get_mark(mark_char, {})
  7.     if mark_pos[1] == 0 then
  8.       vim.cmd("normal! gg")
  9.       vim.cmd("mark " .. mark_char)
  10.       vim.cmd("normal! ``") -- Jump back to where we were
  11.     else
  12.       vim.cmd("normal! `" .. mark_char) -- Jump to the bookmark
  13.       vim.cmd('normal! `"') -- Jump to the last cursor position before leaving
  14.     end
  15.   end, { desc = "Toggle mark " .. mark_char })
  16. end
  17.  
  18. -- Delete mark from current buffer
  19. vim.keymap.set("n", "<leader>bd", function()
  20.   for i = 1, 9 do
  21.     local mark_char = string.char(64 + i)
  22.     local mark_pos = vim.api.nvim_get_mark(mark_char, {})
  23.  
  24.     -- Check if mark is in current buffer
  25.     if mark_pos[1] ~= 0 and vim.api.nvim_get_current_buf() == mark_pos[3] then
  26.       vim.cmd("delmarks " .. mark_char)
  27.     end
  28.   end
  29. end, { desc = "Delete mark" })
  30.  
  31. — List bookmarks
  32. local function bookmarks()
  33.   local snacks = require("snacks")
  34.   return snacks.picker.marks({ filter_marks = "A-I" })
  35. end
  36. vim.keymap.set(“n”,<leader>bb”, list_bookmarks, { desc = “List bookmarks” })
  37.  
  38. — On snacks.picker config
  39. opts = {
  40.   picker = {
  41.     marks = {
  42.       transform = function(item)
  43.         if item.label and item.label:match("^[A-I]$") and item then
  44.           item.label = "" .. string.byte(item.label) - string.byte("A") + 1 .. ""
  45.           return item
  46.         end
  47.         return false
  48.       end,
  49.     }
  50.   }
  51. }
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement