aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/init.lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2016-01-02 13:57:07 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2016-01-02 13:57:07 -0500
commitea80c1f01b27d8139fe3163e29a0bf2383605289 (patch)
treea11326e92ae75083294597bb26327f048d4c91f0 /core/init.lua
parent890c5998dd272f2eb6e34fd6f62796dcd14eff71 (diff)
Updated lspawn LuaDoc; core/init.lua
Diffstat (limited to 'core/init.lua')
-rw-r--r--core/init.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/init.lua b/core/init.lua
index 90a3d4be..16b4e28b 100644
--- a/core/init.lua
+++ b/core/init.lua
@@ -202,6 +202,11 @@ function spawn_proc:read(arg) end
---
-- Writes string input to the stdin of process *spawn_proc*.
+-- Note: On Linux, if more than 65536 bytes (64K) are to be written, it is
+-- possible those bytes need to be written in 65536-byte (64K) chunks, or the
+-- process may not receive all input. However, it is also possible that there is
+-- a limit on how many bytes can be written in a short period of time, perhaps
+-- 196608 bytes (192K).
-- @param ... Standard input for *spawn_proc*.
function spawn_proc:write(...) end