We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
vim.loop
vim.uv
1 parent 754a7fa commit 258eeb2Copy full SHA for 258eeb2
README.md
@@ -380,7 +380,7 @@ local pipe_path = function()
380
vim.fn.stdpath("run"),
381
"kitty.nvim-" .. vim.env.KITTY_PID
382
)
383
- if not vim.loop.fs_stat(addr) then
+ if not vim.uv.fs_stat(addr) then
384
vim.fn.serverstart(addr)
385
end
386
return addr
lua/flatten/rpc.lua
@@ -6,7 +6,7 @@ function M.try_address(addr, startserver)
6
if not addr:find("/") then
7
addr = ("%s/%s"):format(vim.fn.stdpath("run"), addr)
8
9
- if vim.loop.fs_stat(addr) then
+ if vim.uv.fs_stat(addr) then
10
local ok, sock = M.connect(addr)
11
if ok then
12
return sock
0 commit comments