1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 02:50:03 +08:00
SpaceVim/lua/telescope/_extensions/scriptnames.lua

50 lines
1.5 KiB
Lua
Raw Normal View History

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 sp_file = require('spacevim.api').import('file')
local function prepare_output_table()
local lines = {}
local scripts = vim.api.nvim_command_output("scriptnames")
for script in scripts:gmatch("[^\r\n]+") do
table.insert(lines, script)
end
return lines
end
local function show_script_names(opts)
opts = opts or {}
pickers.new(opts, {
prompt_title = "Script Names",
finder = finders.new_table {
results = prepare_output_table()
},
sorter = conf.generic_sorter(opts),
attach_mappings = function(prompt_bufnr, map)
actions.select_default:replace(function()
actions.close(prompt_bufnr)
local entry = action_state.get_selected_entry()
-- print(vim.inspect(selection))
-- vim.cmd("e " + entry.value)
vim.cmd('e ' .. vim.fn.split(entry.value, ": ")[2])
end)
return true
end,
}):find()
end
local function run()
show_script_names()
end
return require("telescope").register_extension({
exports = {
-- Default when to argument is given, i.e. :Telescope scriptnames
scriptnames = run,
},
})