diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-27 17:53:56 +0200 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2019-05-01 00:18:43 +0200 |
| commit | afd947e0c3b34a0dc36140a373af46aa31d8f1ab (patch) | |
| tree | 7e05d87f9ed4b0ee3df54fb18472ac1979c5e812 /runtime/doc/eval.txt | |
| parent | e22c47515680d4286695df1449576783b9320509 (diff) | |
| download | rneovim-afd947e0c3b34a0dc36140a373af46aa31d8f1ab.tar.gz rneovim-afd947e0c3b34a0dc36140a373af46aa31d8f1ab.tar.bz2 rneovim-afd947e0c3b34a0dc36140a373af46aa31d8f1ab.zip | |
doc [ci skip]
ref #9886
Diffstat (limited to 'runtime/doc/eval.txt')
| -rw-r--r-- | runtime/doc/eval.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index b05c806ec3..54f4f3d8c3 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -7823,7 +7823,7 @@ substitute({expr}, {pat}, {sub}, {flags}) *substitute()* |submatch()| returns. Example: > :echo substitute(s, '\(\x\x\)', {m -> '0x' . m[1]}, 'g') -swapinfo({fname}) swapinfo() +swapinfo({fname}) *swapinfo()* The result is a dictionary, which holds information about the swapfile {fname}. The available fields are: version VIM version @@ -7970,7 +7970,7 @@ system({cmd} [, {input}]) *system()* *E677* items converted to NULs). When {input} is given and is a valid buffer id, the content of the buffer is written to the file line by line, each line - terminated by a NL (and NUL where the text has NL). + terminated by NL (and NUL where the text has NL). *E5677* Note: system() cannot write to or read from backgrounded ("&") shell commands, e.g.: > @@ -7987,7 +7987,7 @@ system({cmd} [, {input}]) *system()* *E677* The characters in 'shellquote' and 'shellxquote' may also cause trouble. - The result is a String. Example: > + Result is a String. Example: > :let files = system("ls " . shellescape(expand('%:h'))) :let files = system('ls ' . expand('%:h:S')) |