mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
update nvim-lsp settings
We shouldn't let the diagnostic window perstist forever. Close the diagnostic windows when certain events happen.
This commit is contained in:
parent
13dc38343e
commit
c8777db448
@ -1,3 +1,13 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
function M.show_line_diagnostics()
|
||||||
|
local opts = {
|
||||||
|
focusable = false,
|
||||||
|
close_events = {'BufLeave', 'CursorMoved', 'InsertEnter', 'FocusLost'}
|
||||||
|
}
|
||||||
|
vim.lsp.diagnostic.show_line_diagnostics(opts)
|
||||||
|
end
|
||||||
|
|
||||||
local on_attach = function(client, bufnr)
|
local on_attach = function(client, bufnr)
|
||||||
local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end
|
local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end
|
||||||
local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end
|
local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end
|
||||||
@ -23,8 +33,9 @@ local on_attach = function(client, bufnr)
|
|||||||
buf_set_keymap('n', '<space>q', '<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>', opts)
|
buf_set_keymap('n', '<space>q', '<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>', opts)
|
||||||
buf_set_keymap('n', '<space>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
|
buf_set_keymap('n', '<space>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
|
||||||
|
|
||||||
-- Show diagnostic automatically when cursor is on hold.
|
vim.cmd [[
|
||||||
vim.api.nvim_command('autocmd CursorHold <buffer> lua vim.lsp.diagnostic.show_line_diagnostics({focusable=false})')
|
autocmd CursorHold <buffer> lua require('config.lsp').show_line_diagnostics()
|
||||||
|
]]
|
||||||
|
|
||||||
-- Set some keybinds conditional on server capabilities
|
-- Set some keybinds conditional on server capabilities
|
||||||
if client.resolved_capabilities.document_formatting then
|
if client.resolved_capabilities.document_formatting then
|
||||||
@ -148,3 +159,5 @@ vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
|
|||||||
border = 'rounded'
|
border = 'rounded'
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
return M
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user