aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/provider/node
Commit message (Collapse)AuthorAge
* fix(checkhealth): error in node.js check #28348Ivan Georgiev2024-04-15
| | | | | | | | | | | | | | Problem: :checkhealth node.js check fails: ERROR Failed to run healthcheck for "provider.node" plugin ... node/health.lua:98: attempt to call local 'message' (a string value) `message` is called as a function, when it is actually a string. Solution: Pass `message` to `warn()` as an argument. Fix #28346
* refactor: remove fn_booldundargoc2024-04-06
| | | | | It's better to use vim.fn directly instead of creating minor abstractions like fn_bool.
* refactor(health): refactor provider healthchecksGregory Anders2024-01-01
* Prefer pure Lua functions over vim.fn * Split up provider healthchecks into separate modules to help manage complexity