diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-02-24 12:33:55 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-24 12:33:55 +0900 |
| commit | 276084b4fc1e52515204643428b0fbd1c70568e3 (patch) | |
| tree | 8eb199f0787e0f599e4c9948b45719b14df6755f /lua/nvim_lsp/bashls.lua | |
| parent | [docgen] Update README.md (diff) | |
| parent | window/showMessage: the display level can be set for 'window/showMessage' not... (diff) | |
| download | nvim-lspconfig-276084b4fc1e52515204643428b0fbd1c70568e3.tar nvim-lspconfig-276084b4fc1e52515204643428b0fbd1c70568e3.tar.gz nvim-lspconfig-276084b4fc1e52515204643428b0fbd1c70568e3.tar.bz2 nvim-lspconfig-276084b4fc1e52515204643428b0fbd1c70568e3.tar.lz nvim-lspconfig-276084b4fc1e52515204643428b0fbd1c70568e3.tar.xz nvim-lspconfig-276084b4fc1e52515204643428b0fbd1c70568e3.tar.zst nvim-lspconfig-276084b4fc1e52515204643428b0fbd1c70568e3.zip | |
Merge pull request #145 from h-michael/showMessage-level
window/showMessage: the display level can be set for 'window/showMess…
Diffstat (limited to 'lua/nvim_lsp/bashls.lua')
| -rw-r--r-- | lua/nvim_lsp/bashls.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lua/nvim_lsp/bashls.lua b/lua/nvim_lsp/bashls.lua index a8041d3c..f8d00e9e 100644 --- a/lua/nvim_lsp/bashls.lua +++ b/lua/nvim_lsp/bashls.lua @@ -1,6 +1,5 @@ local configs = require 'nvim_lsp/configs' local util = require 'nvim_lsp/util' -local lsp = vim.lsp local server_name = "bashls" local bin_name = "bash-language-server" @@ -16,7 +15,6 @@ configs[server_name] = { cmd = {"bash-language-server", "start"}; filetypes = {"sh"}; root_dir = vim.loop.os_homedir; - log_level = lsp.protocol.MessageType.Warning; }; on_new_config = function(new_config) local install_info = installer.info() |
