comparison runtime/doc/eval.txt @ 2249:6d3d35ff2c2b vim73

Use full path in undofile(). Updated docs.
author Bram Moolenaar <bram@vim.org>
date Sat, 05 Jun 2010 17:43:32 +0200
parents dc2e5ec0500d
children 1bac28a53fae
comparison
equal deleted inserted replaced
2248:63157185aea5 2249:6d3d35ff2c2b
1284 v:beval_winnr The number of the window, over which the mouse pointer is. Only 1284 v:beval_winnr The number of the window, over which the mouse pointer is. Only
1285 valid while evaluating the 'balloonexpr' option. 1285 valid while evaluating the 'balloonexpr' option.
1286 1286
1287 *v:char* *char-variable* 1287 *v:char* *char-variable*
1288 v:char Argument for evaluating 'formatexpr' and used for the typed 1288 v:char Argument for evaluating 'formatexpr' and used for the typed
1289 character when using <expr> in an abbreviation |map-<expr>|. 1289 character when using <expr> in an abbreviation |:map-<expr>|.
1290 1290
1291 *v:charconvert_from* *charconvert_from-variable* 1291 *v:charconvert_from* *charconvert_from-variable*
1292 v:charconvert_from 1292 v:charconvert_from
1293 The name of the character encoding of a file to be converted. 1293 The name of the character encoding of a file to be converted.
1294 Only valid while evaluating the 'charconvert' option. 1294 Only valid while evaluating the 'charconvert' option.
5771 undofile({name}) *undofile()* 5771 undofile({name}) *undofile()*
5772 Return the name of the undo file that would be used for a file 5772 Return the name of the undo file that would be used for a file
5773 with name {name} when writing. This uses the 'undodir' 5773 with name {name} when writing. This uses the 'undodir'
5774 option, finding directories that exist. It does not check if 5774 option, finding directories that exist. It does not check if
5775 the undo file exist. 5775 the undo file exist.
5776 {name} is always expanded to the full path, since that is what
5777 is used internally.
5776 Useful in combination with |:wundo| and |:rundo|. 5778 Useful in combination with |:wundo| and |:rundo|.
5777 When compiled without the +persistent_undo option this always 5779 When compiled without the +persistent_undo option this always
5778 returns an empty string. 5780 returns an empty string.
5779 5781
5780 values({dict}) *values()* 5782 values({dict}) *values()*