1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 12:30:05 +08:00
SpaceVim/lua/telescope/_extensions/project.lua
2022-05-19 10:19:45 +08:00

74 lines
2.0 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_output_table()
local lines = {}
local projects = vim.api.nvim_eval('g:unite_source_menu_menus.Projects.command_candidates')
for _, project in pairs(projects) do
table.insert(lines, project)
end
return lines
end
local function show_changes(opts)
opts = opts or {}
-- local displayer = entry_display.create({
-- separator = ' ',
-- items = {
-- { width = 4 },
-- { remaining = true },
-- { remaining = true },
-- },
-- })
-- local function make_display(entry)
-- return displayer({
-- { entry.value.type, 'TelescopeResultsVariable' },
-- { entry.value.name, 'TelescopeResultsFunction' },
-- { '[' .. entry.value.line .. ']', 'TelescopeResultsComment' },
-- })
-- end
-- local function make_display(v)
--
-- end
pickers.new(opts, {
prompt_title = "Projects",
finder = finders.new_table {
results = prepare_output_table(),
entry_maker = function(entry)
return {
value = entry,
command = entry[2],
display = entry[1],
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)
vim.cmd(entry.command)
end)
return true
end,
}):find()
end
local function run()
show_changes()
end
return require("telescope").register_extension({
exports = {
-- Default when to argument is given, i.e. :Telescope project
project = run,
},
})