]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
fix doc option list alphabeticall sort
authorOleksiy Hryshchenko <greeschenko@gmail.com>
Thu, 30 Mar 2023 07:45:05 +0000 (10:45 +0300)
committerOleksiy Hryshchenko <greeschenko@gmail.com>
Thu, 30 Mar 2023 07:45:05 +0000 (10:45 +0300)
doc/lsp.txt

index 92ebf3e69da64ffc015e314ca6c2ccf7ccb67595..c20f9ee3d04819cbb2f5d44cd66f1225fe374dad 100644 (file)
@@ -287,12 +287,6 @@ autoHighlightDiags |Boolean| option. Automatically place signs on the
 autoPopulateDiags      |Boolean| option. Automatically populate the location
                        list with diagnostics from the language server.
                        By default this is set to false.
-diagLineHL             |String| option. The highlight group used for a line
-                       with one or more diagnostics.  By default uses
-                       "DiffAdd".  Use "NONE" to disable.
-echoSignature          |Boolean| option.  In insert mode, echo the current
-                       symbol signature instead of showing it in a popup.
-                       By default this is set to false.
 completionMatcher      |String| option.  Enable fuzzy or case insensitive
                        completion for language servers that replies with a
                        full list of completion items.  Some language servers
@@ -306,6 +300,30 @@ completionMatcher  |String| option.  Enable fuzzy or case insensitive
                            case  - case sensitive matching (default).
                            fuzzy - fuzzy match completion items.
                            icase - ignore case when matching items.
+diagLineHL             |String| option. The highlight group used for a line
+                       with one or more diagnostics.  By default uses
+                       "DiffAdd".  Use "NONE" to disable.
+diagVirtualTextHL      |String| option.  The highlight group used for a
+                       diagnostics virtual text.  By default uses "LineNr".
+diagSignErrorText       |String| option. Change diag sign text for errors
+                        By default 'E>'
+diagSignErrorTexthl     |String| option. Change diag sign highlight for errors
+                        By default 'ErrorMsg',
+diagSignWarningText     |String| option. Change diag sign text for warnings
+                        By default 'W>',
+diagSignWarningTexthl   |String| option. Change diag sign highlight for warnings
+                        By default 'Search',
+diagSignInfoText        |String| option. Change diag sign text for info
+                        By default 'I>',
+diagSignInfoTexthl      |String| option. Change diag sign text highlight info
+                        By default 'Pmenu',
+diagSignHintText        |String| option. Change diag sign text for hints
+                        By default 'H>',
+diagSignHintTexthl      |String| option. Change diag sign highlight for hints
+                        By default 'Question',
+echoSignature          |Boolean| option.  In insert mode, echo the current
+                       symbol signature instead of showing it in a popup.
+                       By default this is set to false.
 hideDisabledCodeActions |Boolean| option. Hide all the disabled code actions.
                        By default this is set to false.
 ignoreMissingServer    |Boolean| option.  Do not print a missing language
@@ -339,8 +357,6 @@ showDiagWithVirtualText     |Boolean| option.  Show diagnostic message text from
                        this is set to false.  The "autoHighlightDiags" option
                        should be set to true.
                        Needs Vim version 9.0.1157 or later.
-diagVirtualTextHL      |String| option.  The highlight group used for a
-                       diagnostics virtual text.  By default uses "LineNr".
 showSignature          |Boolean| option.  In insert mode, automatically show
                        the current symbol signature in a popup.
                        By default this is set to true.
@@ -351,22 +367,6 @@ usePopupInCodeAction    |Boolean| option.  When using the |:LspCodeAction|
                        command to display the code action for the current
                        line, use a popup menu instead of echoing.
                        By default this is set to false.
-diagSignErrorText       |String| option. Change diag sign text for errors
-                        By default 'E>'
-diagSignErrorTexthl     |String| option. Change diag sign highlight for errors
-                        By default 'ErrorMsg',
-diagSignWarningText     |String| option. Change diag sign text for warnings
-                        By default 'W>',
-diagSignWarningTexthl   |String| option. Change diag sign highlight for warnings
-                        By default 'Search',
-diagSignInfoText        |String| option. Change diag sign text for info
-                        By default 'I>',
-diagSignInfoTexthl      |String| option. Change diag sign text highlight info
-                        By default 'Pmenu',
-diagSignHintText        |String| option. Change diag sign text for hints
-                        By default 'H>',
-diagSignHintTexthl      |String| option. Change diag sign highlight for hints
-                        By default 'Question',
 
 
 For example, to disable the automatic placement of signs for the LSP