1
0

plugins/harpoon: add mappings for telescope list

This commit is contained in:
Patrick Auernig 2024-09-28 23:32:59 +02:00
parent abfa098281
commit 0f17d6f466

View File

@ -8,25 +8,55 @@ spec.dependencies = {
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim",
} }
-- TODO: Add keybinds to remove mark from list and reorder them --- @param harpoon Harpoon
local function toggle_telescope(harpoon_files) local function toggle_telescope(harpoon)
local file_paths = {} local file_paths = {}
for _, item in ipairs(harpoon_files.items) do for idx, item in pairs(harpoon:list().items) do
table.insert(file_paths, item.value) table.insert(file_paths, { idx, item.value })
end end
local config = require("telescope.config").values local config = require("telescope.config").values
local pickers = require("telescope.pickers") local pickers = require("telescope.pickers")
local finders = require("telescope.finders") local finders = require("telescope.finders")
local action_state = require("telescope.actions.state")
local function mappings(prompt_bufnr, map)
map("i", "<C-d>", function()
local cur_picker = action_state.get_current_picker(prompt_bufnr)
local sel_entry = action_state.get_selected_entry().value[2]
local sel_item = harpoon:list():get_by_value(sel_entry)
if sel_item == nil then
return
end
cur_picker:delete_selection(function(sel)
harpoon:list():remove(sel_item)
end)
end)
return true
end
local finder = finders.new_table({
results = file_paths,
entry_maker = function(entry)
return {
value = entry,
display = entry[1] .. ": " .. entry[2],
ordinal = entry[2],
path = entry[2],
}
end
})
local picker = pickers.new({}, { local picker = pickers.new({}, {
prompt_title = "Harpoon", prompt_title = "Harpoon",
finder = finders.new_table({ finder = finder,
results = file_paths,
}),
previewer = config.file_previewer({}), previewer = config.file_previewer({}),
sorter = config.generic_sorter({}), sorter = config.generic_sorter({}),
attach_mappings = mappings,
}) })
picker:find() picker:find()
@ -38,9 +68,9 @@ spec.config = function()
harpoon:setup() harpoon:setup()
keymap("n", "<Leader>hl", function() keymap("n", "<Leader>fm", function()
toggle_telescope(harpoon:list()) toggle_telescope(harpoon)
end, { desc = "Show harpoon marks" }) end, { desc = "Show list of harpoon marks" })
keymap("n", "<Leader>ha", function() keymap("n", "<Leader>ha", function()
harpoon:list():add() harpoon:list():add()