summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2011-06-26 05:36:34 +0200
committerBram Moolenaar <bram@vim.org>2011-06-26 05:36:34 +0200
commita646364e9c6e3c4ba6f7442a4c70038f79a9df17 (patch)
tree732b5e5ac2845f14f3075794351ddf3a39144c16 /runtime
parentfe439310c7c50631532cb4561cb8ed021f67aedc (diff)
downloadvim-a646364e9c6e3c4ba6f7442a4c70038f79a9df17.tar.gz
updated for version 7.3.235v7.3.235v7-3-235
Problem: ";" gets stuck on a "t" command, it's not useful. Solution: Add the ';' flag in 'cpo'. (Christian Brabandt)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/motion.txt4
-rw-r--r--runtime/doc/options.txt6
2 files changed, 8 insertions, 2 deletions
diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt
index d8a89062..2f635bc4 100644
--- a/runtime/doc/motion.txt
+++ b/runtime/doc/motion.txt
@@ -269,11 +269,11 @@ T{char} Till after [count]'th occurrence of {char} to the
{char} can be entered like with the |f| command.
*;*
-; Repeat latest f, t, F or T [count] times.
+; Repeat latest f, t, F or T [count] times. See |cpo-;|
*,*
, Repeat latest f, t, F or T in opposite direction
- [count] times.
+ [count] times. See also |cpo-;|
==============================================================================
3. Up-down motions *up-down-motions*
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 91623c10..7d8f9262 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -2117,6 +2117,12 @@ A jump table for the options with a short description can be found at |Q_op|.
*cpo->*
> When appending to a register, put a line break before
the appended text.
+ *cpo-;*
+ ; When using |,| or |;| to repeat the last |t| search
+ and the cursor is right in front of the searched
+ character, the cursor won't move. When not included,
+ the cursor would skip over it and jump to the
+ following occurence.
POSIX flags. These are not included in the Vi default value, except
when $VIM_POSIX was set on startup. |posix|