navigator.lua/lua/navigator/lspclient/attach.lua

94 lines
2.8 KiB
Lua
Raw Normal View History

2021-04-19 02:56:32 +00:00
local vim, api = vim, vim.api
local lsp = require('vim.lsp')
2021-04-19 02:56:32 +00:00
local util = require('navigator.util')
2021-04-19 02:56:32 +00:00
local log = util.log
local trace = util.trace
_NG_Attached = {}
2021-04-19 02:56:32 +00:00
local M = {}
M.on_attach = function(client, bufnr)
bufnr = bufnr or 0
if bufnr == 0 then
vim.notify('no bufnr provided from LSP ' .. client.name, vim.log.levels.DEBUG)
end
local uri = vim.uri_from_bufnr(bufnr)
if uri == 'file://' or uri == 'file:///' or #uri < 11 then
log('skip for float buffer', uri)
return { error = 'invalid file', result = nil }
end
2021-10-14 03:55:40 +00:00
log('attaching: ', bufnr, client.name, uri)
2021-10-14 03:55:40 +00:00
trace(client)
_NG_Attached[client.name] = true
2021-06-17 23:24:02 +00:00
2021-05-28 00:10:28 +00:00
-- add highlight for Lspxxx
require('navigator.lspclient.highlight').add_highlight()
require('navigator.lspclient.highlight').diagnositc_config_sign()
api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
2021-04-19 02:56:32 +00:00
require('navigator.lspclient.mapping').setup({
client = client,
bufnr = bufnr,
})
2021-05-08 04:54:37 +00:00
2022-05-28 09:37:15 +00:00
if client.server_capabilities.documentHighlightProvider == true then
2022-07-29 09:02:43 +00:00
trace('attaching doc highlight: ', bufnr, client.name)
vim.defer_fn(function()
require('navigator.dochighlight').documentHighlight(bufnr)
end, 50) -- allow a bit time for it to settle down
2022-07-29 09:02:43 +00:00
else
log('skip doc highlight: ', bufnr, client.name)
2021-04-19 02:56:32 +00:00
end
require('navigator.lspclient.lspkind').init()
2021-04-19 02:56:32 +00:00
local config = require('navigator').config_values()
trace(client.name, 'navigator on attach')
if config.on_attach ~= nil then
log(client.name, 'customized attach for all clients')
config.on_attach(client, bufnr)
end
2022-03-10 01:25:31 +00:00
if config.lsp and config.lsp[client.name] then
if type(config.lsp[client.name]) == 'function' then
local attach = config.lsp[client.name]().on_attach
if attach then
attach(client, bufnr)
end
elseif config.lsp[client.name].on_attach ~= nil then
log(client.name, 'customized attach for this client')
log('lsp client specific attach for', client.name)
config.lsp[client.name].on_attach(client, bufnr)
end
end
2021-06-17 14:49:13 +00:00
--- if code lens enabled
if _NgConfigValues.lsp.code_lens_action.enable then
if client.server_capabilities.codeLensProvider then
require('navigator.codelens').setup(bufnr)
end
end
if _NgConfigValues.lsp.code_action.enable then
2022-11-24 02:52:02 +00:00
if client.server_capabilities.codeActionProvider and client.name ~= 'null-ls' then
2022-11-26 01:15:42 +00:00
trace('code action enabled for client', client.server_capabilities.codeActionProvider)
api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, {
group = api.nvim_create_augroup('NGCodeActGroup_' .. tostring(bufnr), {}),
buffer = bufnr,
callback = function()
2022-07-31 05:49:00 +00:00
require('navigator.codeAction').code_action_prompt(bufnr)
end,
})
end
end
2021-04-19 02:56:32 +00:00
end
2021-05-28 00:10:28 +00:00
-- M.setup = function(cfg)
-- return M
-- end
2021-04-19 02:56:32 +00:00
return M