diff options
| author | William Boman <william@redwill.se> | 2022-04-21 21:36:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-21 21:36:13 +0200 |
| commit | d86aad85ba4adcf9abd68ad05ed475ff11756206 (patch) | |
| tree | 4808abac4edcdd70c518fd3b1006734a6eeea259 /lua/nvim-lsp-installer/installers/std.lua | |
| parent | chore: refactor remaining installers to async impl (#616) (diff) | |
| download | mason-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.lua | 7 |
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" |
