summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2018-04-03 20:00:28 +1000
committerMaxime Coste <mawww@kakoune.org>2018-04-03 20:00:28 +1000
commite128c05213f4c9ff0ba32dc40e1858bd1908d8f6 (patch)
tree26f5f18053999e379cd203eacd17b4da909d8676
parent895ec93b5cbde6a450fca03e6443f4cdd17ca28d (diff)
parent2b457c62b25a47a763a8cb7cc29850cdcabfa229 (diff)
Merge remote-tracking branch 'Delapouite/fifo'
-rw-r--r--doc/pages/buffers.asciidoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/pages/buffers.asciidoc b/doc/pages/buffers.asciidoc
index 491cae13..382fa5b9 100644
--- a/doc/pages/buffers.asciidoc
+++ b/doc/pages/buffers.asciidoc
@@ -32,15 +32,15 @@ A scratch buffer can be created by passing the `-debug` switch to the
== FIFO Buffers
-The `:edit` command can take a `-fifo` parameter:
+The `:edit` command can take a `-fifo` switch:
---------------------------------------------
:edit -fifo <filename> [-scroll] <buffername>
---------------------------------------------
In this case, a buffer named `<buffername>` is created which reads
-its content from the fifo `<filename>`. When the fifo is written to,
-the buffer is automatically updated.
+its content from the fifo (also called "named pipe") `<filename>`.
+When the fifo is written to, the buffer is automatically updated.
If the `-scroll` switch is specified, the window displaying the buffer
will scroll so that the newest data is always visible.