summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-05-12 14:38:41 +0000
committerBram Moolenaar <Bram@vim.org>2007-05-12 14:38:41 +0000
commitd46bbc72033a1f29662203a424483d3f5b169563 (patch)
tree693e43f1526815ddc57af3fb0e0076a5e6155130
parentd427d1e38144b4e3588f062f2b69992aed320adc (diff)
downloadvim-git-d46bbc72033a1f29662203a424483d3f5b169563.tar.gz
updated for version 7.1
-rw-r--r--runtime/doc/eval.txt14
-rw-r--r--runtime/doc/usr_31.txt2
2 files changed, 8 insertions, 8 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 5f9965445..5df64f11e 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 7.1b. Last change: 2007 May 07
+*eval.txt* For Vim version 7.1. Last change: 2007 May 11
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2211,7 +2211,7 @@ cursor({list})
If {col} is zero, the cursor will stay in the current column.
When 'virtualedit' is used {off} specifies the offset in
screen columns from the start of the character. E.g., a
- position within a Tab or after the last character.
+ position within a <Tab> or after the last character.
deepcopy({expr}[, {noref}]) *deepcopy()* *E698*
@@ -2978,7 +2978,7 @@ gettabwinvar({tabnr}, {winnr}, {varname}) *gettabwinvar()*
Examples: >
:let list_is_on = gettabwinvar(1, 2, '&list')
:echo "myvar = " . gettabwinvar(3, 1, 'myvar')
-
+<
*getwinposx()*
getwinposx() The result is a Number, which is the X coordinate in pixels of
the left hand side of the GUI Vim window. The result will be
@@ -3742,7 +3742,7 @@ getpos({expr}) Get the position for {expr}. For possible values of {expr}
column is 1.
The "off" number is zero, unless 'virtualedit' is used. Then
it is the offset in screen columns from the start of the
- character. E.g., a position within a Tab or after the last
+ character. E.g., a position within a <Tab> or after the last
character.
This can be used to save and restore the cursor position: >
let save_cursor = getpos(".")
@@ -4402,7 +4402,7 @@ setpos({expr}, {list})
The "off" number is only used when 'virtualedit' is set. Then
it is the offset in screen columns from the start of the
- character. E.g., a position within a Tab or after the last
+ character. E.g., a position within a <Tab> or after the last
character.
Also see |getpos()|
@@ -4467,7 +4467,7 @@ setreg({regname}, {value} [,{options}])
If a number immediately follows "b" or "<CTRL-V>" then this is
used as the width of the selection - if it is not specified
then the width of the block is set to the number of characters
- in the longest line (counting a <TAB> as 1 character).
+ in the longest line (counting a <Tab> as 1 character).
If {options} contains no register settings, then the default
is to use character mode unless {value} ends in a <NL>.
@@ -5027,7 +5027,7 @@ virtcol({expr}) *virtcol()*
"lnum" or "col" is out of range then virtcol() returns zero.
When 'virtualedit' is used it can be [lnum, col, off], where
"off" is the offset in screen columns from the start of the
- character. E.g., a position within a Tab or after the last
+ character. E.g., a position within a <Tab> or after the last
character.
For the byte position use |col()|.
When Virtual editing is active in the current mode, a position
diff --git a/runtime/doc/usr_31.txt b/runtime/doc/usr_31.txt
index a9b44b010..10794d5b4 100644
--- a/runtime/doc/usr_31.txt
+++ b/runtime/doc/usr_31.txt
@@ -1,4 +1,4 @@
-*usr_31.txt* For Vim version 7.1b. Last change: 2007 May 08
+*usr_31.txt* For Vim version 7.1. Last change: 2007 May 08
VIM USER MANUAL - by Bram Moolenaar