diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-05-01 00:22:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-01 00:22:17 +0200 |
| commit | 53cef34f16635aba04d4443c4d94a18a34a38eca (patch) | |
| tree | 02d3ccdecacaea5046de2367d07e46bced76c3b3 /runtime/doc/eval.txt | |
| parent | e22c47515680d4286695df1449576783b9320509 (diff) | |
| parent | c11e6181330e9e27ec8af1712f505b38a00d8ca3 (diff) | |
| download | rneovim-53cef34f16635aba04d4443c4d94a18a34a38eca.tar.gz rneovim-53cef34f16635aba04d4443c4d94a18a34a38eca.tar.bz2 rneovim-53cef34f16635aba04d4443c4d94a18a34a38eca.zip | |
Merge #9946 from justinmk/doc
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')) |
