Skip to content

Commit 9a54939

Browse files
committed
fix: dont return vim.NIL. Use actual nil instead
1 parent 8a8742d commit 9a54939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/null-ls/rpc.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function M.start(dispatchers)
5858

5959
local send = function(result)
6060
if callback then
61-
callback(nil, result or vim.NIL)
61+
callback(nil, result)
6262
end
6363
end
6464

0 commit comments

Comments
 (0)