1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-17 15:57:26 +03:00

Merge remote-tracking branch 'harryoooooooooo/command-fifo-doc'

This commit is contained in:
Maxime Coste 2021-09-04 09:25:54 +10:00
commit 2dd8b0e767

View File

@ -174,12 +174,12 @@ named pipe can be opened and closed multiple times which makes it possible
to interleave shell and Kakoune commands. `$kak_response_fifo` refers to
a named pipe that can be used to return data from Kakoune.
---
----
%sh{
echo "write $kak_response_fifo" > $kak_command_fifo
content="$(cat $kak_response_fifo)"
}
---
----
This also makes it possible to pass data bigger than the system environment
size limit.