mirror of
https://github.com/ThePrimeagen/harpoon.git
synced 2025-07-13 17:40:25 +00:00
116 lines
3.6 KiB
Lua
116 lines
3.6 KiB
Lua
local action_state = require("telescope.actions.state")
|
|
local action_utils = require("telescope.actions.utils")
|
|
local entry_display = require("telescope.pickers.entry_display")
|
|
local finders = require("telescope.finders")
|
|
local pickers = require("telescope.pickers")
|
|
local conf = require("telescope.config").values
|
|
local harpoon = require("harpoon")
|
|
local harpoon_mark = require("harpoon.mark")
|
|
|
|
local function filter_empty_string(list)
|
|
local next = {}
|
|
for idx = 1, #list do
|
|
if list[idx].filename ~= "" then
|
|
table.insert(next, list[idx])
|
|
end
|
|
end
|
|
|
|
return next
|
|
end
|
|
|
|
local generate_new_finder = function()
|
|
return finders.new_table({
|
|
results = filter_empty_string(harpoon.get_mark_config().marks),
|
|
entry_maker = function(entry)
|
|
local line = entry.filename .. ":" .. entry.row .. ":" .. entry.col
|
|
local displayer = entry_display.create({
|
|
separator = " - ",
|
|
items = {
|
|
{ width = 2 },
|
|
{ width = 50 },
|
|
{ remaining = true },
|
|
},
|
|
})
|
|
local make_display = function()
|
|
return displayer({
|
|
tostring(entry.index),
|
|
line,
|
|
})
|
|
end
|
|
return {
|
|
value = entry,
|
|
ordinal = line,
|
|
display = make_display,
|
|
lnum = entry.row,
|
|
col = entry.col,
|
|
filename = entry.filename,
|
|
}
|
|
end,
|
|
})
|
|
end
|
|
|
|
local delete_harpoon_mark = function(prompt_bufnr)
|
|
local confirmation = vim.fn.input(
|
|
string.format("Delete current mark(s)? [y/n]: ")
|
|
)
|
|
if
|
|
string.len(confirmation) == 0
|
|
or string.sub(string.lower(confirmation), 0, 1) ~= "y"
|
|
then
|
|
print(string.format("Didn't delete mark"))
|
|
return
|
|
end
|
|
|
|
local selection = action_state.get_selected_entry()
|
|
harpoon_mark.rm_file(selection.filename)
|
|
|
|
local function get_selections()
|
|
local results = {}
|
|
action_utils.map_selections(prompt_bufnr, function(entry)
|
|
table.insert(results, entry)
|
|
end)
|
|
return results
|
|
end
|
|
|
|
local selections = get_selections()
|
|
for _, current_selection in ipairs(selections) do
|
|
harpoon_mark.rm_file(current_selection.filename)
|
|
end
|
|
|
|
local current_picker = action_state.get_current_picker(prompt_bufnr)
|
|
current_picker:refresh(generate_new_finder(), { reset_prompt = true })
|
|
end
|
|
|
|
local move_mark_down = function(prompt_bufnr)
|
|
local selection = action_state.get_selected_entry()
|
|
if selection.index == 1 then
|
|
return
|
|
end
|
|
local mark_list = harpoon.get_mark_config().marks
|
|
table.remove(mark_list, selection.index)
|
|
table.insert(mark_list, selection.index - 1, selection.value)
|
|
local current_picker = action_state.get_current_picker(prompt_bufnr)
|
|
current_picker:refresh(generate_new_finder(), { reset_prompt = true })
|
|
end
|
|
|
|
return function(opts)
|
|
opts = opts or {}
|
|
|
|
pickers.new(opts, {
|
|
prompt_title = "harpoon marks",
|
|
finder = generate_new_finder(),
|
|
sorter = conf.generic_sorter(opts),
|
|
previewer = conf.grep_previewer(opts),
|
|
attach_mappings = function(_, map)
|
|
map("i", "<c-d>", delete_harpoon_mark)
|
|
map("n", "<c-d>", delete_harpoon_mark)
|
|
-- TODO: implement move_mark_up
|
|
-- map("i", "<c-p>", move_mark_up)
|
|
-- map("n", "<c-p>", move_mark_up)
|
|
map("i", "<c-n>", move_mark_down)
|
|
map("n", "<c-n>", move_mark_down)
|
|
return true
|
|
end,
|
|
}):find()
|
|
end
|