kakoune/doc/pages
Maxime Coste 3d7fb8ddbc Add support for $kak_command_fifo and $kak_response_fifo
Those fifos are accessible during %sh{...} blocks, the command fifo
executes commands written to it once the write end side is closed
(multiple open/write/close sequences are supported), the response
fifo is a simple helper fifo available to write response back to
the shell process

An example use of this feature is to request some list options
content from without being limited by the environment size:
```
%sh{
    echo "echo -to-file $kak_response_fifo -quoting shell -- %opt{some_list}" > $kak_command_fifo
    eval "set -- $(cat $kak_response_fifo)"
}
```
2021-07-07 19:25:06 +10:00
..
buffers.asciidoc doc: Add more details about debug buffers. 2019-02-17 11:09:58 +11:00
changelog.asciidoc Merge remote-tracking branch 'Cycatz/master' 2021-01-04 09:50:00 +11:00
command-parsing.asciidoc Disabled backtick escaping 2020-10-27 12:36:33 +01:00
commands.asciidoc Merge remote-tracking branch 'Screwtapello/doc-improvements' 2021-07-07 19:18:27 +10:00
execeval.asciidoc Add a -verbatim switch to evaluate-commands for perfect forwarding 2019-10-23 22:30:23 +11:00
expansions.asciidoc Add support for $kak_command_fifo and $kak_response_fifo 2021-07-07 19:25:06 +10:00
faces.asciidoc doc: fix typos and clarify some parts 2020-05-28 18:37:26 +02:00
faq.asciidoc doc faq: Document the frugal scripting language 2020-08-10 12:23:35 +03:00
highlighters.asciidoc doc: fix typos and clarify some parts 2020-05-28 18:37:26 +02:00
hooks.asciidoc {commands,hooks}.asciidoc: Use consistent capitalization for Kakoune 2021-05-15 22:17:41 -04:00
keymap.asciidoc Fixed some English typos 2019-08-04 00:45:19 +02:00
keys.asciidoc Clarify which parts of Kakoune the extra_word_chars option affects. 2021-06-09 17:50:30 +10:00
mapping.asciidoc doc mapping: Document semicolon and percent 2020-12-15 17:13:02 +03:00
modes.asciidoc doc: mention comma key for entering user-mode 2020-10-04 13:34:57 +02:00
options.asciidoc Merge remote-tracking branch 'Screwtapello/document-completion-escaping' 2021-06-15 20:40:19 +10:00
regex.asciidoc Clarify which parts of Kakoune the extra_word_chars option affects. 2021-06-09 17:50:30 +10:00
registers.asciidoc doc: fix typos and clarify some parts 2020-05-28 18:37:26 +02:00
scopes.asciidoc doc: Document the buffer=/path/to/file scope syntax. 2019-01-23 12:34:02 +11:00