Skip to content

Commit

Permalink
fix(utils): use vim.loop or vim.ev declared in the beginning of a f…
Browse files Browse the repository at this point in the history
…ile (#519)

Co-authored-by: Tim Borodin <tb@tb-pc.netbird.cloud>
  • Loading branch information
timborodin and Tim Borodin committed Jun 22, 2024
1 parent 2d8610a commit 235dc61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/trouble/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function M.noautocmd(fn)
end

function M.is_win()
return vim.uv.os_uname().sysname:find("Windows") ~= nil
return uv.os_uname().sysname:find("Windows") ~= nil
end

---@param opts? {msg?: string}
Expand Down

0 comments on commit 235dc61

Please sign in to comment.