* started tree finder * made tree more ergonmic * deleted unneeded comments * added stack root and node * added preprocessing * using staticfinder instead of separate finder, custom entry maker * added selections and remember * removed unused stuff * fixed warnings * fixed remember and selections pop * started branch * added go function * changed up test * removed root parameter from go function * changed back to not do_close * removed node and leaf classes * removed stack class instead for table.insert and table.remove * fixed warning * started branch * added better preprocessor and tree class * started some tests * finished making tests pass * cleaned up * fixed make entry and updated example * started * added some stuff * deleted uneeded stuff * added cancelable * changed workspace requester * use better cancellation mechanism * removed accidental stuff * removed useless print * delete more useless stuff * rename to dynamic * added request cancellation * CHECK IF NIL * removed unused * added trash global variable
331 lines
9.3 KiB
Lua
331 lines
9.3 KiB
Lua
local actions = require('telescope.actions')
|
|
local action_state = require('telescope.actions.state')
|
|
local finders = require('telescope.finders')
|
|
local make_entry = require('telescope.make_entry')
|
|
local pickers = require('telescope.pickers')
|
|
local utils = require('telescope.utils')
|
|
local a = require('plenary.async_lib')
|
|
local async, await = a.async, a.await
|
|
local channel = a.util.channel
|
|
|
|
local conf = require('telescope.config').values
|
|
|
|
local lsp = {}
|
|
|
|
lsp.references = function(opts)
|
|
opts.shorten_path = utils.get_default(opts.shorten_path, true)
|
|
|
|
local params = vim.lsp.util.make_position_params()
|
|
params.context = { includeDeclaration = true }
|
|
|
|
local results_lsp = vim.lsp.buf_request_sync(0, "textDocument/references", params, opts.timeout or 10000)
|
|
local locations = {}
|
|
for _, server_results in pairs(results_lsp) do
|
|
if server_results.result then
|
|
vim.list_extend(locations, vim.lsp.util.locations_to_items(server_results.result) or {})
|
|
end
|
|
end
|
|
|
|
if vim.tbl_isempty(locations) then
|
|
return
|
|
end
|
|
|
|
pickers.new(opts, {
|
|
prompt_title = 'LSP References',
|
|
finder = finders.new_table {
|
|
results = locations,
|
|
entry_maker = opts.entry_maker or make_entry.gen_from_quickfix(opts),
|
|
},
|
|
previewer = conf.qflist_previewer(opts),
|
|
sorter = conf.generic_sorter(opts),
|
|
}):find()
|
|
end
|
|
|
|
lsp.definitions = function(opts)
|
|
opts = opts or {}
|
|
|
|
local params = vim.lsp.util.make_position_params()
|
|
local result = vim.lsp.buf_request_sync(0, "textDocument/definition", params, opts.timeout or 10000)
|
|
local flattened_results = {}
|
|
for _, server_results in pairs(result) do
|
|
if server_results.result then
|
|
vim.list_extend(flattened_results, server_results.result)
|
|
end
|
|
end
|
|
|
|
if #flattened_results == 0 then
|
|
return
|
|
elseif #flattened_results == 1 then
|
|
vim.lsp.util.jump_to_location(flattened_results[1])
|
|
else
|
|
local locations = vim.lsp.util.locations_to_items(flattened_results)
|
|
pickers.new(opts, {
|
|
prompt_title = 'LSP Definitions',
|
|
finder = finders.new_table {
|
|
results = locations,
|
|
entry_maker = opts.entry_maker or make_entry.gen_from_quickfix(opts),
|
|
},
|
|
previewer = conf.qflist_previewer(opts),
|
|
sorter = conf.generic_sorter(opts),
|
|
}):find()
|
|
end
|
|
end
|
|
|
|
lsp.document_symbols = function(opts)
|
|
local params = vim.lsp.util.make_position_params()
|
|
local results_lsp = vim.lsp.buf_request_sync(0, "textDocument/documentSymbol", params, opts.timeout or 10000)
|
|
|
|
if not results_lsp or vim.tbl_isempty(results_lsp) then
|
|
print("No results from textDocument/documentSymbol")
|
|
return
|
|
end
|
|
|
|
local locations = {}
|
|
for _, server_results in pairs(results_lsp) do
|
|
vim.list_extend(locations, vim.lsp.util.symbols_to_items(server_results.result, 0) or {})
|
|
end
|
|
|
|
if vim.tbl_isempty(locations) then
|
|
return
|
|
end
|
|
|
|
opts.ignore_filename = opts.ignore_filename or true
|
|
pickers.new(opts, {
|
|
prompt_title = 'LSP Document Symbols',
|
|
finder = finders.new_table {
|
|
results = locations,
|
|
entry_maker = opts.entry_maker or make_entry.gen_from_lsp_symbols(opts)
|
|
},
|
|
previewer = conf.qflist_previewer(opts),
|
|
sorter = conf.prefilter_sorter{
|
|
tag = "symbol_type",
|
|
sorter = conf.generic_sorter(opts)
|
|
}
|
|
}):find()
|
|
end
|
|
|
|
lsp.code_actions = function(opts)
|
|
local params = opts.params or vim.lsp.util.make_range_params()
|
|
|
|
params.context = {
|
|
diagnostics = vim.lsp.diagnostic.get_line_diagnostics()
|
|
}
|
|
|
|
local results_lsp, err = vim.lsp.buf_request_sync(0, "textDocument/codeAction", params, opts.timeout or 10000)
|
|
|
|
if err then
|
|
print("ERROR: " .. err)
|
|
return
|
|
end
|
|
|
|
if not results_lsp or vim.tbl_isempty(results_lsp) then
|
|
print("No results from textDocument/codeAction")
|
|
return
|
|
end
|
|
|
|
local _, response = next(results_lsp)
|
|
if not response then
|
|
print("No code actions available")
|
|
return
|
|
end
|
|
|
|
local results = response.result
|
|
if not results or #results == 0 then
|
|
print("No code actions available")
|
|
return
|
|
end
|
|
|
|
for i,x in ipairs(results) do
|
|
x.idx = i
|
|
end
|
|
|
|
pickers.new(opts, {
|
|
prompt_title = 'LSP Code Actions',
|
|
finder = finders.new_table {
|
|
results = results,
|
|
entry_maker = function(line)
|
|
return {
|
|
valid = line ~= nil,
|
|
value = line,
|
|
ordinal = line.idx .. line.title,
|
|
display = line.idx .. ': ' .. line.title
|
|
}
|
|
end
|
|
},
|
|
attach_mappings = function(prompt_bufnr)
|
|
actions.select_default:replace(function()
|
|
local selection = action_state.get_selected_entry()
|
|
actions.close(prompt_bufnr)
|
|
local val = selection.value
|
|
|
|
if val.edit or type(val.command) == "table" then
|
|
if val.edit then
|
|
vim.lsp.util.apply_workspace_edit(val.edit)
|
|
end
|
|
if type(val.command) == "table" then
|
|
vim.lsp.buf.execute_command(val.command)
|
|
end
|
|
else
|
|
vim.lsp.buf.execute_command(val)
|
|
end
|
|
end)
|
|
|
|
return true
|
|
end,
|
|
sorter = conf.generic_sorter(opts),
|
|
}):find()
|
|
end
|
|
|
|
lsp.range_code_actions = function(opts)
|
|
opts.params = vim.lsp.util.make_given_range_params()
|
|
lsp.code_actions(opts)
|
|
end
|
|
|
|
lsp.workspace_symbols = function(opts)
|
|
opts.shorten_path = utils.get_default(opts.shorten_path, true)
|
|
|
|
local params = {query = opts.query or ''}
|
|
local results_lsp = vim.lsp.buf_request_sync(0, "workspace/symbol", params, opts.timeout or 10000)
|
|
|
|
local locations = {}
|
|
|
|
if results_lsp and not vim.tbl_isempty(results_lsp) then
|
|
for _, server_results in pairs(results_lsp) do
|
|
-- Some LSPs (like Clangd and intelephense) might return { { result = {} } }, so make sure we have result
|
|
if server_results and server_results.result and not vim.tbl_isempty(server_results.result) then
|
|
vim.list_extend(locations, vim.lsp.util.symbols_to_items(server_results.result, 0) or {})
|
|
end
|
|
end
|
|
end
|
|
|
|
if vim.tbl_isempty(locations) then
|
|
print("No results from workspace/symbol. Maybe try a different query: " ..
|
|
"Telescope lsp_workspace_symbols query=example")
|
|
return
|
|
end
|
|
|
|
opts.ignore_filename = utils.get_default(opts.ignore_filename, false)
|
|
opts.hide_filename = utils.get_default(opts.hide_filename, false)
|
|
|
|
pickers.new(opts, {
|
|
prompt_title = 'LSP Workspace Symbols',
|
|
finder = finders.new_table {
|
|
results = locations,
|
|
entry_maker = opts.entry_maker or make_entry.gen_from_lsp_symbols(opts)
|
|
},
|
|
previewer = conf.qflist_previewer(opts),
|
|
sorter = conf.prefilter_sorter{
|
|
tag = "symbol_type",
|
|
sorter = conf.generic_sorter(opts)
|
|
}
|
|
}):find()
|
|
end
|
|
|
|
local function get_workspace_symbols_requester(bufnr)
|
|
local cancel = function() end
|
|
|
|
return async(function(prompt)
|
|
local tx, rx = channel.oneshot()
|
|
cancel()
|
|
_, cancel = vim.lsp.buf_request(bufnr, "workspace/symbol", {query = prompt}, tx)
|
|
|
|
local err, _, results_lsp = await(rx())
|
|
assert(not err, err)
|
|
|
|
local locations = vim.lsp.util.symbols_to_items(results_lsp or {}, bufnr) or {}
|
|
return locations
|
|
end)
|
|
end
|
|
|
|
lsp.dynamic_workspace_symbols = function(opts)
|
|
local curr_bufnr = vim.api.nvim_get_current_buf()
|
|
|
|
pickers.new(opts, {
|
|
prompt_title = 'LSP Dynamic Workspace Symbols',
|
|
finder = finders.new_dynamic {
|
|
entry_maker = opts.entry_maker or make_entry.gen_from_lsp_symbols(opts),
|
|
fn = get_workspace_symbols_requester(curr_bufnr),
|
|
},
|
|
previewer = conf.qflist_previewer(opts),
|
|
sorter = conf.generic_sorter()
|
|
}):find()
|
|
end
|
|
|
|
lsp.diagnostics = function(opts)
|
|
local locations = utils.diagnostics_to_tbl(opts)
|
|
|
|
if vim.tbl_isempty(locations) then
|
|
print('No diagnostics found')
|
|
return
|
|
end
|
|
|
|
opts.hide_filename = utils.get_default(opts.hide_filename, true)
|
|
pickers.new(opts, {
|
|
prompt_title = 'LSP Document Diagnostics',
|
|
finder = finders.new_table {
|
|
results = locations,
|
|
entry_maker = opts.entry_maker or make_entry.gen_from_lsp_diagnostics(opts)
|
|
},
|
|
previewer = conf.qflist_previewer(opts),
|
|
sorter = conf.prefilter_sorter{
|
|
tag = "type",
|
|
sorter = conf.generic_sorter(opts)
|
|
}
|
|
}):find()
|
|
end
|
|
|
|
lsp.workspace_diagnostics = function(opts)
|
|
opts = utils.get_default(opts, {})
|
|
opts.hide_filename = utils.get_default(opts.hide_filename, false)
|
|
opts.prompt_title = 'LSP Workspace Diagnostics'
|
|
opts.get_all = true
|
|
lsp.diagnostics(opts)
|
|
end
|
|
|
|
local function check_capabilities(feature)
|
|
local clients = vim.lsp.buf_get_clients(0)
|
|
|
|
local supported_client = false
|
|
for _, client in pairs(clients) do
|
|
supported_client = client.resolved_capabilities[feature]
|
|
if supported_client then break end
|
|
end
|
|
|
|
if supported_client then
|
|
return true
|
|
else
|
|
if #clients == 0 then
|
|
print("LSP: no client attached")
|
|
else
|
|
print("LSP: server does not support " .. feature)
|
|
end
|
|
return false
|
|
end
|
|
end
|
|
|
|
local feature_map = {
|
|
["code_actions"] = "code_action",
|
|
["document_symbols"] = "document_symbol",
|
|
["references"] = "find_references",
|
|
["definitions"] = "goto_definition",
|
|
["workspace_symbols"] = "workspace_symbol",
|
|
}
|
|
|
|
local function apply_checks(mod)
|
|
for k, v in pairs(mod) do
|
|
mod[k] = function(opts)
|
|
opts = opts or {}
|
|
|
|
local feature_name = feature_map[k]
|
|
if feature_name and not check_capabilities(feature_name) then
|
|
return
|
|
end
|
|
v(opts)
|
|
end
|
|
end
|
|
|
|
return mod
|
|
end
|
|
|
|
return apply_checks(lsp)
|