diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-03-07 23:16:51 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-03-07 23:16:51 +0000 |
commit | e4efc3b27052385c6466f133ac1b0931b7e4c855 (patch) | |
tree | 4f03a30a3323a5fbe0ceba3fa47e2c2503e60d7c /runtime/doc/eval.txt | |
parent | 44ecf65f74749995760eea6a1082f59d94817cbe (diff) | |
download | vim-e4efc3b27052385c6466f133ac1b0931b7e4c855.zip |
updated for version 7.0057
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 1cfa7b0fc..9e4f850b9 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1,4 +1,4 @@ -*eval.txt* For Vim version 7.0aa. Last change: 2005 Mar 04 +*eval.txt* For Vim version 7.0aa. Last change: 2005 Mar 07 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1105,6 +1105,32 @@ variables for each buffer. Use local buffer variables instead |b:var|. Predefined Vim variables: *vim-variable* *v:var* + *v:beval_col* *beval_col-variable* +v:beval_col The number of the column, over which the mouse pointer is. + This is the byte index in the |v:beval_lnum| line. + Only valid while evaluating the 'balloonexpr' option. + + *v:beval_bufnr* *beval_bufnr-variable* +v:beval_bufnr The number of the buffer, over which the mouse pointer is. Only + valid while evaluating the 'balloonexpr' option. + + *v:beval_lnum* *beval_lnum-variable* +v:beval_lnum The number of the line, over which the mouse pointer is. Only + valid while evaluating the 'balloonexpr' option. + + *v:beval_text* *beval_text-variable* +v:beval_text The text under or after the mouse pointer. Usually a word as it is + useful for debugging a C program. 'iskeyword' applies, but a + dot and "->" before the position is included. When on a ']' + the text before it is used, including the matching '[' and + word before it. When on a Visual area within one line the + highlighted text is used. + Only valid while evaluating the 'balloonexpr' option. + + *v:beval_winnr* *beval_winnr-variable* +v:beval_winnr The number of the window, over which the mouse pointer is. Only + valid while evaluating the 'balloonexpr' option. + *v:charconvert_from* *charconvert_from-variable* v:charconvert_from The name of the character encoding of a file to be converted. |