Files
telescope.nvim/scratch/new_thread_writer_example.lua
T

11 lines
190 B
Lua

local uv = vim.loop
local pipe = uv.new_pipe(false)
pipe:bind('/tmp/sock.test_2')
pipe:read_start(function(...)
print('we readin from this pipe')
print(...)
end)
pipe:write("hello??")