Skip to content

Commit

Permalink
Merge pull request #8 from desdic/20240503neovim
Browse files Browse the repository at this point in the history
fix: vim.loop is renamed vim.uv in 0.10.x
  • Loading branch information
desdic authored May 3, 2024
2 parents f5a40b9 + b7030a4 commit 49d17cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/marlin/datafile.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local M = {}

local uv = vim.loop
local uv = vim.loop or vim.uv

M.read_config = function(datafile)
local fd = uv.fs_open(datafile, "r", 438)
Expand Down

0 comments on commit 49d17cd

Please sign in to comment.