From ef604e7de2470feb943636e6459800b5239ddd06 Mon Sep 17 00:00:00 2001 From: harryoooooooooo Date: Wed, 1 Sep 2021 22:54:51 +0800 Subject: [PATCH] doc: expansions: Fix bad asciidoc syntax for kak_command_fifo --- doc/pages/expansions.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/pages/expansions.asciidoc b/doc/pages/expansions.asciidoc index 93aab184..d2374398 100644 --- a/doc/pages/expansions.asciidoc +++ b/doc/pages/expansions.asciidoc @@ -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.