summaryrefslogtreecommitdiffstats
path: root/runtime/doc/motion.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-08-01 07:19:10 +0000
committerBram Moolenaar <Bram@vim.org>2005-08-01 07:19:10 +0000
commit78984f503c0404ea36674a74076b091b27a9e528 (patch)
tree89fafa57f1dfefd4a483e20b8ffbb778ea50c498 /runtime/doc/motion.txt
parent53805d1eaa179509f39048516e344158eedfbbe4 (diff)
updated for version 7.0121v7.0121
Diffstat (limited to 'runtime/doc/motion.txt')
-rw-r--r--runtime/doc/motion.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt
index 09f203a0ca..8494c8e835 100644
--- a/runtime/doc/motion.txt
+++ b/runtime/doc/motion.txt
@@ -1,4 +1,4 @@
-*motion.txt* For Vim version 7.0aa. Last change: 2005 Jul 19
+*motion.txt* For Vim version 7.0aa. Last change: 2005 Jul 31
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -72,13 +72,13 @@ and end position. Generally, motions that move between lines affect lines
characterwise). However, there are some exceptions.
*exclusive* *inclusive*
-A character motion is either inclusive or exclusive. When inclusive, the start
-and end position of the motion are included in the operation. When exclusive,
-the last character towards the end of the buffer is not included. Linewise
-motions always include the start and end position.
+A character motion is either inclusive or exclusive. When inclusive, the
+start and end position of the motion are included in the operation. When
+exclusive, the last character towards the end of the buffer is not included.
+Linewise motions always include the start and end position.
-Which motions are linewise, inclusive or exclusive is mentioned below. There
-are however, two general exceptions:
+Which motions are linewise, inclusive or exclusive is mentioned with the
+command. There are however, two general exceptions:
1. If the motion is exclusive and the end of the motion is in column 1, the
end of the motion is moved to the end of the previous line and the motion
becomes inclusive. Example: "}" moves to the first line after a paragraph,
@@ -247,7 +247,7 @@ f{char} To [count]'th occurrence of {char} to the right. The
*F*
F{char} To the [count]'th occurrence of {char} to the left.
- The cursor is placed on {char} |inclusive|.
+ The cursor is placed on {char} |exclusive|.
{char} can be entered like with the |f| command.
*t*
@@ -259,7 +259,7 @@ t{char} Till before [count]'th occurrence of {char} to the
*T*
T{char} Till after [count]'th occurrence of {char} to the
left. The cursor is placed on the character right of
- {char} |inclusive|.
+ {char} |exclusive|.
{char} can be entered like with the |f| command.
*;*