comparison runtime/doc/eval.txt @ 10548:74effdaa369e

Updated runtime files. commit https://github.com/vim/vim/commit/68563937f58ea2dc31b58739336c383d2fd7e6cf Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 10 13:31:15 2017 +0100 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Jan 2017 13:45:05 +0100
parents 7232cd9f8a7c
children bac9cec298ed
comparison
equal deleted inserted replaced
10547:b1438ad6d6e8 10548:74effdaa369e
1 *eval.txt* For Vim version 8.0. Last change: 2016 Nov 29 1 *eval.txt* For Vim version 8.0. Last change: 2017 Jan 08
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
7613 7613
7614 systemlist({expr} [, {input}]) *systemlist()* 7614 systemlist({expr} [, {input}]) *systemlist()*
7615 Same as |system()|, but returns a |List| with lines (parts of 7615 Same as |system()|, but returns a |List| with lines (parts of
7616 output separated by NL) with NULs transformed into NLs. Output 7616 output separated by NL) with NULs transformed into NLs. Output
7617 is the same as |readfile()| will output with {binary} argument 7617 is the same as |readfile()| will output with {binary} argument
7618 set to "b". 7618 set to "b". Note that on MS-Windows you may get trailing CR
7619 characters.
7619 7620
7620 Returns an empty string on error. 7621 Returns an empty string on error.
7621 7622
7622 7623
7623 tabpagebuflist([{arg}]) *tabpagebuflist()* 7624 tabpagebuflist([{arg}]) *tabpagebuflist()*