diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-02-20 19:11:07 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-02-20 19:11:07 +0000 |
commit | 18081e3c4ea6291b549bff3a17f54d3162c3f278 (patch) | |
tree | 750578e9761fc44974185d0c32c95c1a635006ce /runtime | |
parent | ffd82c530766c02f76cbdd9db80adb853859e10b (diff) | |
download | vim-git-18081e3c4ea6291b549bff3a17f54d3162c3f278.tar.gz |
updated for version 7.1-262v7.1.262
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 7acf740ed..13caa16cf 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1,4 +1,4 @@ -*eval.txt* For Vim version 7.1. Last change: 2008 Feb 13 +*eval.txt* For Vim version 7.1. Last change: 2008 Feb 20 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1638,6 +1638,7 @@ getline( {lnum}) String line {lnum} of current buffer getline( {lnum}, {end}) List lines {lnum} to {end} of current buffer getloclist({nr}) List list of location list items getmatches() List list of current matches +getpid() Number process ID of Vim getpos( {expr}) List position of cursor, mark, etc. getqflist() List list of quickfix items getreg( [{regname} [, 1]]) String contents of register @@ -3833,6 +3834,10 @@ nr2char({expr}) *nr2char()* characters. nr2char(0) is a real NUL and terminates the string, thus results in an empty string. + *getpid()* +getpid() Return a Number which is the process ID of the Vim process. + On Unix this is a unique number. On MS-DOS it's always zero. + *getpos()* getpos({expr}) Get the position for {expr}. For possible values of {expr} see |line()|. |