diff --git a/lua/jupytext/health.lua b/lua/jupytext/health.lua index 7a8f45d..6529356 100644 --- a/lua/jupytext/health.lua +++ b/lua/jupytext/health.lua @@ -1,13 +1,13 @@ local M = {} M.check = function() - vim.health.report_start "jupytext.nvim" + vim.health.start "jupytext.nvim" vim.fn.system "jupytext --version" if vim.v.shell_error == 0 then - vim.health.report_ok "Jupytext is available" + vim.health.ok "Jupytext is available" else - vim.health.report_error("Jupytext is not available", "Install jupytext via `pip install jupytext`") + vim.health.error("Jupytext is not available", "Install jupytext via `pip install jupytext`") end end