]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
improve docs, fix incorrect comment
authorChristoffer Aasted <chr.aasted@gmail.com>
Wed, 15 Feb 2023 10:21:33 +0000 (11:21 +0100)
committerChristoffer Aasted <chr.aasted@gmail.com>
Wed, 15 Feb 2023 10:21:33 +0000 (11:21 +0100)
autoload/lsp/options.vim
doc/lsp.txt

index 7ef088338bdf9712b428ef6a3170e393fbedbae8..8aa8f8f8a58feaa169decd2ad8cae302dd4b8408 100644 (file)
@@ -34,8 +34,9 @@ export var lspOptions: dict<any> = {
   showDiagOnStatusLine: false,
   # Make diagnostics show in a popup instead of echoing
   showDiagInPopup: true,
-  # Don't print message when a configured language server is missing.
+  # Default diagnostic highlight on lines
   diagLineHL: 'Cursor',
+  # Don't print message when a configured language server is missing.
   ignoreMissingServer: false,
   # Use a floating menu to show the code action menu instead of asking for input
   usePopupInCodeAction: false,
index a026ee14ae6c258f4b52cb13b9616909f00cf0a1..9449483225de4d8a2e3e2d7ec05188e19c8b06d7 100644 (file)
@@ -278,6 +278,7 @@ noDiagHoverOnLine   Suppress diagnostic hover from appearing when
                        the mouse is over the line instead of the signature.
                        By default this is set to true.
 diagLineHL             Highlight used for diagnostic line.
+                       By default uses `Cursor`.
                        Use `NONE` to disable.
 noNewlineInCompletion  Suppress adding a new line on completion selection
                        with <CR>.