Skip to content

Commit

Permalink
fix: workaround neovim/neovim#31633
Browse files Browse the repository at this point in the history
  • Loading branch information
ibhagwan committed Dec 19, 2024
1 parent 29e8180 commit 8a5eb31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/fzf-lua/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ end

-- Taken from `runtime/lua/vim/_system.lua`
-- will raise exception without timeout on 32-bit systems (#1599)
local MAX_TIMEOUT = 2 ^ 31
local MAX_TIMEOUT = 2 ^ 31 - 1

---@param cmd string[]
---@return string[] lines in the stdout or stderr, separated by '\n'
Expand Down

0 comments on commit 8a5eb31

Please sign in to comment.