Skip to content

Commit 9203fc6

Browse files
committed
fix: use 0xffffffffffffffff instead of math.huge
1 parent a90fac2 commit 9203fc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/flatten/guest.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function M.maybe_block(block)
2323
end
2424
waiting = true
2525
if
26-
vim.wait(math.huge, function()
26+
vim.wait(0xFFFFFFFFFFFFFFFF, function()
2727
return waiting == false
2828
or vim.api.nvim_get_chan_info(host) == vim.empty_dict()
2929
end)

0 commit comments

Comments
 (0)