[WIP]: Tue 15 Sep 2020 04:54:27 PM EDT

This commit is contained in:
TJ DeVries
2020-09-15 16:54:27 -04:00
parent b8f17075d4
commit ee94a0db36
9 changed files with 209 additions and 31 deletions
+10
View File
@@ -0,0 +1,10 @@
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??")