aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-11-07 14:35:30 +0100
committerWilliam Boman <william@redwill.se>2021-11-07 14:35:30 +0100
commit0ce4c8f78f9f7607cd88964e15f8bfec5b505b9a (patch)
tree70c0fd4c2571b3e747d5411d9e52961a818bec1e
parentinstallers: remove deprecated zx module (diff)
downloadmason-0ce4c8f78f9f7607cd88964e15f8bfec5b505b9a.tar
mason-0ce4c8f78f9f7607cd88964e15f8bfec5b505b9a.tar.gz
mason-0ce4c8f78f9f7607cd88964e15f8bfec5b505b9a.tar.bz2
mason-0ce4c8f78f9f7607cd88964e15f8bfec5b505b9a.tar.lz
mason-0ce4c8f78f9f7607cd88964e15f8bfec5b505b9a.tar.xz
mason-0ce4c8f78f9f7607cd88964e15f8bfec5b505b9a.tar.zst
mason-0ce4c8f78f9f7607cd88964e15f8bfec5b505b9a.zip
remove deprecated g:lsp_installer_log_level variable
-rw-r--r--plugin/nvim-lsp-installer.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugin/nvim-lsp-installer.vim b/plugin/nvim-lsp-installer.vim
index 6650290f..e6470072 100644
--- a/plugin/nvim-lsp-installer.vim
+++ b/plugin/nvim-lsp-installer.vim
@@ -73,14 +73,3 @@ command! LspInstallLog call s:LspInstallLog()
let &cpo = s:save_cpo
unlet s:save_cpo
-
-
-
-"""
-""" Backward compat for deprecated g:lsp_installer* options. Remove by 2021-12-01-ish.
-"""
-if exists("g:lsp_installer_log_level")
- " legacy global variable option
- call luaeval("require('nvim-lsp-installer').settings { log_level = _A }", g:lsp_installer_log_level)
- lua vim.notify("[Deprecation notice] Providing settings via global variables (g:lsp_installer_log_level) is deprecated. Please refer to https://github.com/williamboman/nvim-lsp-installer#configuration.", vim.log.levels.WARN)
-endif