mirror of
https://github.com/zoriya/telescope.nvim.git
synced 2026-08-16 02:45:09 +00:00
11 lines
190 B
Lua
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??")
|