diff options
| author | Shatur95 <genaloner@gmail.com> | 2020-02-25 00:27:11 +0200 |
|---|---|---|
| committer | Shatur95 <genaloner@gmail.com> | 2020-02-25 00:27:11 +0200 |
| commit | dab72e9cca64e74844ccd6a7084b47b281068daa (patch) | |
| tree | 28df1ddb903933753a8fdfe1076885c9b68b27b4 /scripts | |
| parent | Fix review issues (diff) | |
| parent | [docgen] Update README.md (diff) | |
| download | nvim-lspconfig-dab72e9cca64e74844ccd6a7084b47b281068daa.tar nvim-lspconfig-dab72e9cca64e74844ccd6a7084b47b281068daa.tar.gz nvim-lspconfig-dab72e9cca64e74844ccd6a7084b47b281068daa.tar.bz2 nvim-lspconfig-dab72e9cca64e74844ccd6a7084b47b281068daa.tar.lz nvim-lspconfig-dab72e9cca64e74844ccd6a7084b47b281068daa.tar.xz nvim-lspconfig-dab72e9cca64e74844ccd6a7084b47b281068daa.tar.zst nvim-lspconfig-dab72e9cca64e74844ccd6a7084b47b281068daa.zip | |
Merge branch 'master' into add_gdscript
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/README_template.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/README_template.md b/scripts/README_template.md index 98c9aa4e..4d925d94 100644 --- a/scripts/README_template.md +++ b/scripts/README_template.md @@ -76,6 +76,7 @@ local nvim_lsp = require'nvim_lsp' nvim_lsp.texlab.setup{ name = 'texlab_fancy'; log_level = vim.lsp.protocol.MessageType.Log; + message_level = vim.lsp.protocol.MessageType.Log; settings = { latex = { build = { @@ -106,7 +107,6 @@ if not nvim_lsp.foo_lsp then root_dir = function(fname) return nvim_lsp.util.find_git_ancestor(fname) or vim.loop.os_homedir() end; - log_level = vim.lsp.protocol.MessageType.Warning; settings = {}; }; } @@ -168,8 +168,12 @@ nvim_lsp.SERVER.setup{config} Server may specify a default value. {log_level} - controls the level of logs to show from build processes and other - window/logMessage events. Defaults to + controls the level of logs to show from window/logMessage notifications. Defaults to + vim.lsp.protocol.MessageType.Warning instead of + vim.lsp.protocol.MessageType.Log. + + {message_level} + controls the level of messages to show from window/showMessage notifications. Defaults to vim.lsp.protocol.MessageType.Warning instead of vim.lsp.protocol.MessageType.Log. |
