fix: added virtualtext back for error messages
This commit is contained in:
parent
4d3c17f523
commit
951b329f94
1 changed files with 5 additions and 4 deletions
|
|
@ -46,22 +46,23 @@
|
|||
|
||||
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
|
||||
vim.lsp.handlers.hover, {
|
||||
border = _border
|
||||
border = _border;
|
||||
}
|
||||
)
|
||||
|
||||
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
|
||||
vim.lsp.handlers.signature_help, {
|
||||
border = _border
|
||||
border = _border;
|
||||
}
|
||||
)
|
||||
|
||||
vim.diagnostic.config {
|
||||
float={border=_border}
|
||||
float = { border=_border };
|
||||
virtual_text = true;
|
||||
};
|
||||
|
||||
require('lspconfig.ui.windows').default_options = {
|
||||
border = _border
|
||||
border = _border;
|
||||
}
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue