def LspInitOnce()
var lineHL: string = opt.lspOptions.diagLineHL
- if lineHL->empty()
- lineHL = 'MatchParen'
- endif
# Signs used for LSP diagnostics
sign_define([{name: 'LspDiagError', text: 'E>', texthl: 'ErrorMsg',
linehl: lineHL},
# Make diagnostics show in a popup instead of echoing
showDiagInPopup: true,
# Don't print message when a configured language server is missing.
+ diagLineHL: 'Cursor',
ignoreMissingServer: false,
# Use a floating menu to show the code action menu instead of asking for input
usePopupInCodeAction: false,