aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/repeat.txt
diff options
context:
space:
mode:
authorDavid Bürgin <676c7473@gmail.com>2015-05-01 14:27:37 +0200
committerMichael Reed <m.reed@mykolab.com>2015-05-08 17:46:54 -0400
commit001209a2fe25612f2fe076d2db3d3073f0a6e008 (patch)
tree50a01a72ead9c3d184a2c430eb554c37abe5ad0d /runtime/doc/repeat.txt
parent1721e115b4e02887f29a08265880741c9d8ffb3f (diff)
downloadrneovim-001209a2fe25612f2fe076d2db3d3073f0a6e008.tar.gz
rneovim-001209a2fe25612f2fe076d2db3d3073f0a6e008.tar.bz2
rneovim-001209a2fe25612f2fe076d2db3d3073f0a6e008.zip
'cpoptions': Remove "*" flag #2554
The "*" flag in 'cpoptions' makes the command :* execute the contents of a register. Removed because 1. the same functionality exists as :@ 2. it hides :* as a useful command-line shortcut for :'<,'> 3. unlike :@ it cannot be used with the * register Helped-by: Michael Reed <m.reed@mykolab.com>
Diffstat (limited to 'runtime/doc/repeat.txt')
-rw-r--r--runtime/doc/repeat.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index 847830af9b..0412e9fb10 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -128,14 +128,12 @@ q Stops recording.
*@@* *E748*
@@ Repeat the previous @{0-9a-z":*} [count] times.
-:[addr]*{0-9a-z".=+} *:@* *:star*
+ *:@*
:[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex
command. First set cursor at line [addr] (default is
current line). When the last line in the register does
not have a <CR> it will be added automatically when
the 'e' flag is present in 'cpoptions'.
- Note that the ":*" command is only recognized when the
- '*' flag is present in 'cpoptions'.
For ":@=" the last used expression is used. The
result of evaluating the expression is executed as an
Ex command.