doc: expansions: Fix bad asciidoc syntax for kak_command_fifo

This commit is contained in:
harryoooooooooo 2021-09-01 22:54:51 +08:00
parent bc11f972c5
commit ef604e7de2

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.