1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-19 08:47:46 +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 to interleave shell and Kakoune commands. `$kak_response_fifo` refers to
a named pipe that can be used to return data from Kakoune. a named pipe that can be used to return data from Kakoune.
--- ----
%sh{ %sh{
echo "write $kak_response_fifo" > $kak_command_fifo echo "write $kak_response_fifo" > $kak_command_fifo
content="$(cat $kak_response_fifo)" content="$(cat $kak_response_fifo)"
} }
--- ----
This also makes it possible to pass data bigger than the system environment This also makes it possible to pass data bigger than the system environment
size limit. size limit.