mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 22:30:04 +08:00
74 lines
2.2 KiB
Lua
74 lines
2.2 KiB
Lua
local action_state = require("telescope.actions.state")
|
|
local actions = require("telescope.actions")
|
|
local conf = require("telescope.config").values
|
|
local entry_display = require("telescope.pickers.entry_display")
|
|
local finders = require("telescope.finders")
|
|
local pickers = require("telescope.pickers")
|
|
|
|
local function prepare_neoyank_output(register)
|
|
local lines = {}
|
|
local yank_history = vim.api.nvim_eval('neoyank#_get_yank_histories()')
|
|
local yank = yank_history[register] or {}
|
|
|
|
for _, y in pairs(yank) do
|
|
table.insert(lines, y)
|
|
end
|
|
return lines
|
|
end
|
|
|
|
local function show_yank_history(opts)
|
|
local opts = opts or {}
|
|
local register = opts.register or '"'
|
|
local displayer = entry_display.create({
|
|
separator = ' ',
|
|
items = {
|
|
{ width = 4 },
|
|
{ remaining = true },
|
|
},
|
|
})
|
|
local function make_display(entry)
|
|
-- print(vim.inspect(entry))
|
|
return displayer({
|
|
{ '[' .. entry.value[2] .. ']', 'TelescopeResultsComment' },
|
|
{ entry.value[1]:gsub("\n", "\\n"), 'TelescopeResultsFunction' },
|
|
})
|
|
end
|
|
pickers.new(opts, {
|
|
prompt_title = "neoyank",
|
|
finder = finders.new_table {
|
|
results = prepare_neoyank_output(register),
|
|
entry_maker = function(entry)
|
|
return {
|
|
value = entry,
|
|
display = make_display,
|
|
ordinal = entry[1]
|
|
}
|
|
end
|
|
},
|
|
sorter = conf.generic_sorter(opts),
|
|
attach_mappings = function(prompt_bufnr)
|
|
actions.select_default:replace(function()
|
|
local entry = action_state.get_selected_entry()
|
|
actions.close(prompt_bufnr)
|
|
local reg = vim.fn.getreg('*')
|
|
vim.fn.setreg('*', entry.value[2])
|
|
vim.cmd("put *")
|
|
vim.fn.setreg('*', reg)
|
|
end)
|
|
return true
|
|
end,
|
|
}):find()
|
|
end
|
|
|
|
local function run()
|
|
show_yank_history()
|
|
end
|
|
|
|
return require("telescope").register_extension({
|
|
exports = {
|
|
-- Default when to argument is given, i.e. :Telescope neoyank
|
|
neoyank = run,
|
|
},
|
|
})
|
|
|