kakoune/doc/pages
Bruno Heridet b40eeae6e3 doc: add precision about -buffer switch on eval/exec
Relevant filter in the code:
```
        if (*bufnames == "*")
        {
            for (auto&& buffer : BufferManager::instance()
                               | transform(&std::unique_ptr<Buffer>::get)
                               | filter([](Buffer* buf) { return not (buf->flags() & Buffer::Flags::Debug); })
                               | gather<Vector<SafePtr<Buffer>>>()) // gather as we might be mutating the buffer list in the loop.
                context_wrap_for_buffer(*buffer);
        }

```
2019-03-26 19:34:23 +01:00
..
buffers.asciidoc doc: Add more details about debug buffers. 2019-02-17 11:09:58 +11:00
changelog.asciidoc Update changelog to notify change in rc/ hierarchy 2019-03-21 22:03:11 +11:00
command-parsing.asciidoc Document escaping %-strings and add more examples 2019-01-31 09:00:08 -05:00
commands.asciidoc Add support for -shell-script-* completion in :prompt 2019-03-24 19:28:46 +11:00
execeval.asciidoc doc: add precision about -buffer switch on eval/exec 2019-03-26 19:34:23 +01:00
expansions.asciidoc Add cursor_display_column expansion 2019-03-23 11:32:32 +11:00
faces.asciidoc doc: The faces doc should list all the supported color names. 2019-03-23 11:38:21 +11:00
faq.asciidoc Notes on true color and Mac OS 2019-03-02 22:53:15 -05:00
highlighters.asciidoc Add support for named captures to the regex impl and regex highlighter 2019-01-03 22:55:50 +11:00
hooks.asciidoc Change BufReadFifo hook param to contain the inserted range 2018-11-14 17:52:57 +11:00
keymap.asciidoc Move keymap to pages/keymap.asciidoc 2018-10-06 10:34:39 +10:00
keys.asciidoc Add object mode expansions 2019-02-17 20:18:19 -05:00
mapping.asciidoc mapping.asciidoc: add tips for mappings that trigger commands 2018-09-25 18:42:07 +10:00
modes.asciidoc Remove <scope> from user-modes commands 2018-03-02 09:28:27 +01:00
options.asciidoc rename auto_complete -> autocomplete in docs 2019-02-24 10:45:38 +00:00
regex.asciidoc Add support for named captures to the regex impl and regex highlighter 2019-01-03 22:55:50 +11:00
registers.asciidoc doc: complete list of normal commands using default registers 2018-10-28 09:52:33 +01:00
scopes.asciidoc doc: Document the buffer=/path/to/file scope syntax. 2019-01-23 12:34:02 +11:00