From 8552a1b73897218b81e17eed8a3961389a17a807 Mon Sep 17 00:00:00 2001 From: Steven Dalamaras Date: Sun, 3 Aug 2025 16:59:59 +1000 Subject: [PATCH] Removed healthcheck methods deprecated since nvim 0.11 --- lua/jupytext/health.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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