aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/installers/std.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-04-21 21:36:13 +0200
committerGitHub <noreply@github.com>2022-04-21 21:36:13 +0200
commitd86aad85ba4adcf9abd68ad05ed475ff11756206 (patch)
tree4808abac4edcdd70c518fd3b1006734a6eeea259 /lua/nvim-lsp-installer/installers/std.lua
parentchore: refactor remaining installers to async impl (#616) (diff)
downloadmason-d86aad85ba4adcf9abd68ad05ed475ff11756206.tar
mason-d86aad85ba4adcf9abd68ad05ed475ff11756206.tar.gz
mason-d86aad85ba4adcf9abd68ad05ed475ff11756206.tar.bz2
mason-d86aad85ba4adcf9abd68ad05ed475ff11756206.tar.lz
mason-d86aad85ba4adcf9abd68ad05ed475ff11756206.tar.xz
mason-d86aad85ba4adcf9abd68ad05ed475ff11756206.tar.zst
mason-d86aad85ba4adcf9abd68ad05ed475ff11756206.zip
add deprecation notice to old installer modules (#618)
Diffstat (limited to 'lua/nvim-lsp-installer/installers/std.lua')
-rw-r--r--lua/nvim-lsp-installer/installers/std.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/nvim-lsp-installer/installers/std.lua b/lua/nvim-lsp-installer/installers/std.lua
index 34383810..9db1251c 100644
--- a/lua/nvim-lsp-installer/installers/std.lua
+++ b/lua/nvim-lsp-installer/installers/std.lua
@@ -1,3 +1,10 @@
+require "nvim-lsp-installer.notify"(
+ (
+ "%s has been deprecated. See https://github.com/williamboman/nvim-lsp-installer/wiki/Async-infrastructure-changes-notice"
+ ):format "nvim-lsp-installer.installers.std",
+ vim.log.levels.WARN
+)
+
local path = require "nvim-lsp-installer.path"
local fs = require "nvim-lsp-installer.fs"
local process = require "nvim-lsp-installer.process"