We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e4d03 commit f27b7c8Copy full SHA for f27b7c8
lua/tpipeline/health.lua
@@ -11,10 +11,10 @@ M.check = function()
11
vim.health.report_ok("Neovim version is supported")
12
end
13
14
- if vim.regex('%run'):match_str(info.job_state) == nil then
15
- vim.health.report_ok("Background job is running")
16
- else
+ if vim.regex('^run'):match_str(info.job_state) == nil then
17
vim.health.report_error(string.format("Background job is not running: %s", info.job_state))
+ else
+ vim.health.report_ok("Background job is running")
18
19
20
if next(info.job_errors) == nil then
0 commit comments