New lua API function: follow_cursor (supports opts.focus_outline). This sets location in outline to match location in code. New keymap: restore_location (C-g) by default. This provides the same functionality as follow_cursor. I've also refactored other lua API functions for consistency of using `opts.focus_outline`. If opts is not provided, focus_outline is defaulted to true. To change this behaviour, set it to false.
85 lines
1.8 KiB
Lua
85 lines
1.8 KiB
Lua
local config = require 'symbols-outline.config'
|
|
local lsp_utils = require 'symbols-outline.utils.lsp_utils'
|
|
local jsx = require 'symbols-outline.utils.jsx'
|
|
|
|
local M = {}
|
|
|
|
local function getParams()
|
|
return { textDocument = vim.lsp.util.make_text_document_params() }
|
|
end
|
|
|
|
function M.hover_info(bufnr, params, on_info)
|
|
local clients = vim.lsp.buf_get_clients(bufnr)
|
|
local used_client
|
|
|
|
for id, client in pairs(clients) do
|
|
if config.is_client_blacklisted(id) then
|
|
goto continue
|
|
else
|
|
if client.server_capabilities.hoverProvider then
|
|
used_client = client
|
|
break
|
|
end
|
|
end
|
|
::continue::
|
|
end
|
|
|
|
if not used_client then
|
|
on_info(nil, {
|
|
contents = {
|
|
kind = 'markdown',
|
|
content = { 'No extra information availaible!' },
|
|
},
|
|
})
|
|
end
|
|
|
|
used_client.request('textDocument/hover', params, on_info, bufnr)
|
|
end
|
|
|
|
-- probably change this
|
|
function M.should_use_provider(bufnr)
|
|
local clients = vim.lsp.buf_get_clients(bufnr)
|
|
local ret = false
|
|
|
|
for id, client in pairs(clients) do
|
|
if config.is_client_blacklisted(id) then
|
|
goto continue
|
|
else
|
|
if client.server_capabilities.documentSymbolProvider then
|
|
ret = true
|
|
break
|
|
end
|
|
end
|
|
::continue::
|
|
end
|
|
|
|
return ret
|
|
end
|
|
|
|
function M.postprocess_symbols(response)
|
|
local symbols = lsp_utils.flatten_response(response)
|
|
|
|
local jsx_symbols = jsx.get_symbols()
|
|
|
|
if #jsx_symbols > 0 then
|
|
return lsp_utils.merge_symbols(symbols, jsx_symbols)
|
|
else
|
|
return symbols
|
|
end
|
|
end
|
|
|
|
---@param on_symbols function
|
|
function M.request_symbols(on_symbols, opts)
|
|
vim.lsp.buf_request_all(
|
|
0,
|
|
'textDocument/documentSymbol',
|
|
getParams(),
|
|
function (response)
|
|
response = M.postprocess_symbols(response)
|
|
on_symbols(response, opts)
|
|
end
|
|
)
|
|
end
|
|
|
|
return M
|