We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17e3507 commit 33fe4b6Copy full SHA for 33fe4b6
1 file changed
lua/fzf-lua/rpc.lua
@@ -46,13 +46,13 @@ local function server_listen(server_socket, server_socket_path)
46
os.exit(0)
47
end
48
49
- if _is_linux then
50
- while true do
51
- local len = uv.fs_sendfile(1, receive_socket:fileno(), 0, 1024 * 1024)
52
- local eof = len == 0
53
- if eof then finish() end
54
- end
55
+ -- if _is_linux then
+ -- while true do
+ -- local len = uv.fs_sendfile(1, receive_socket:fileno(), 0, 1024 * 1024)
+ -- local eof = len == 0
+ -- if eof then finish() end
+ -- end
56
57
receive_socket:read_start(function(err, data)
58
assert(not err)
0 commit comments