refactor: use vim.deprecate on all deprecated functions

This commit is contained in:
dundargoc
2023-12-25 21:28:28 +01:00
committed by dundargoc
parent 0f22ea400c
commit 5f9d4d8afe
7 changed files with 36 additions and 20 deletions

View File

@ -888,7 +888,7 @@ end
---@private
function vim.pretty_print(...)
vim.deprecate('vim.pretty_print', 'vim.print', '0.10')
vim.deprecate('vim.pretty_print()', 'vim.print()', '0.10')
return vim.print(...)
end