comparison runtime/doc/eval.txt @ 1733:5a7384b9ca66 v7.2.031

updated for version 7.2-031
author vimboss
date Sun, 09 Nov 2008 12:46:09 +0000
parents 5232b9862f23
children 28d0c20ad8a0
comparison
equal deleted inserted replaced
1732:f84061aa57e4 1733:5a7384b9ca66
1 *eval.txt* For Vim version 7.2. Last change: 2008 Aug 09 1 *eval.txt* For Vim version 7.2. Last change: 2008 Nov 02
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1481 1481
1482 *v:mouse_col* *mouse_col-variable* 1482 *v:mouse_col* *mouse_col-variable*
1483 v:mouse_col Column number for a mouse click obtained with |getchar()|. 1483 v:mouse_col Column number for a mouse click obtained with |getchar()|.
1484 This is the screen column number, like with |virtcol()|. The 1484 This is the screen column number, like with |virtcol()|. The
1485 value is zero when there was no mouse button click. 1485 value is zero when there was no mouse button click.
1486
1487 *v:oldfiles* *oldfiles-variable*
1488 v:oldfiles List of file names that is loaded from the |viminfo| file on
1489 startup. These are the files that Vim remembers marks for.
1490 The length of the List is limited by the ' argument of the
1491 'viminfo' option (default is 100).
1492 Also see |:oldfiles| and |c_#<|.
1493 The List can be modified, but this has no effect on what is
1494 stored in the |viminfo| file later. If you use values other
1495 than String this will cause trouble.
1496 {only when compiled with the +viminfo feature}
1486 1497
1487 *v:operator* *operator-variable* 1498 *v:operator* *operator-variable*
1488 v:operator The last operator given in Normal mode. This is a single 1499 v:operator The last operator given in Normal mode. This is a single
1489 character except for commands starting with <g> or <z>, 1500 character except for commands starting with <g> or <z>,
1490 in which case it is two characters. Best used alongside 1501 in which case it is two characters. Best used alongside