Hi Bram and list,
Fixed contents:
doc/eval.txt
- L6337, L6714: fix: Mixing spaces and tabs.
- L6709: fix: Over 80 columns.
- L6759: Remove extra `"` after `lnum`.
doc/index.txt
- L1462: Missing `:redrawtabline`.
doc/quickfix.txt
- L1554: fix: Over 80 columns.
doc/sign.txt
- L266-L272: Probably, `all` required before `placed`?
doc/spell.txt
- L580: Probably typo?
Check it out an attached patch please.
--
Best regards,
Hirohito Higashi (h_east)
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 1278c97a2..c30805138 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -6334,7 +6334,7 @@ mode([expr]) Return a string that indicates the current mode.
nov Operator-pending (forced characterwise |o_v|)
noV Operator-pending (forced linewise |o_V|)
noCTRL-V Operator-pending (forced blockwise |o_CTRL-V|);
- CTRL-V is one character
+ CTRL-V is one character
niI Normal using |i_CTRL-O| in |Insert-mode|
niR Normal using |i_CTRL-O| in |Replace-mode|
niV Normal using |i_CTRL-O| in |Virtual-Replace-mode|
@@ -6706,12 +6706,12 @@ prop_add({lnum}, {col}, {props})
for a property that does not continue in
another line; can be zero
end_lnum line number for the end of text
- end_col column just after the text; not used when "length"
- is present; when {col} and "end_col" are
- equal, and "end_lnum" is omitted or equal to
- {lnum}, this is a zero-width text property
+ end_col column just after the text; not used when
+ "length" is present; when {col} and "end_col"
+ are equal, and "end_lnum" is omitted or equal
+ to {lnum}, this is a zero-width text property
bufnr buffer to add the property to; when omitted
- the current buffer is used
+ the current buffer is used
id user defined ID for the property; when omitted
zero is used
type name of the text property type
@@ -6756,7 +6756,7 @@ prop_find({props} [, {direction}])
start position with "lnum" and "col"
must be given; when omitted the
current buffer is used
- lnum" start in this line (when omitted start
+ lnum start in this line (when omitted start
at the cursor)
col start at this column (when omitted
and "lnum" is given: use column 1,
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt
index 4abd25aa0..40670ba1b 100644
--- a/runtime/doc/index.txt
+++ b/runtime/doc/index.txt
@@ -1459,6 +1459,7 @@ tag command action ~
|:redir| :redi[r] redirect messages to a file or register
|:redraw| :redr[aw] force a redraw of the display
|:redrawstatus| :redraws[tatus] force a redraw of the status line(s)
+|:redrawtabline| :redrawt[abline] force a redraw of the tabline
|:registers| :reg[isters] display the contents of registers
|:resize| :res[ize] change current window height
|:retab| :ret[ab] change tab size
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 471c5f96e..06572b371 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1551,7 +1551,7 @@ The backslashes before the pipe character are required to avoid it to be
recognized as a command separator. The backslash before each space is
required for the set command.
- *cfilter-plugin* *:Cfilter* *:Lfilter*
+ *cfilter-plugin* *:Cfilter* *:Lfilter*
If you have too many matching messages, you can use the cfilter plugin to
reduce the number of entries. Load the plugin with: >
packadd cfilter
diff --git a/runtime/doc/sign.txt b/runtime/doc/sign.txt
index 6eb11a052..259f9bb1b 100644
--- a/runtime/doc/sign.txt
+++ b/runtime/doc/sign.txt
@@ -263,13 +263,13 @@ See |sign_unplace()| for the equivalent Vim script function.
all the files it appears in.
:sign unplace *
- Remove placed signs in the global group from all the files.
+ Remove all placed signs in the global group from all the files.
:sign unplace * group={group}
- Remove placed signs in group {group} from all the files.
+ Remove all placed signs in group {group} from all the files.
:sign unplace * group=*
- Remove placed signs in all the groups from all the files.
+ Remove all placed signs in all the groups from all the files.
:sign unplace
Remove a placed sign at the cursor position. If multiple signs
diff --git a/runtime/doc/spell.txt b/runtime/doc/spell.txt
index 2b096e3be..6194fc4ca 100644
--- a/runtime/doc/spell.txt
+++ b/runtime/doc/spell.txt
@@ -577,7 +577,7 @@ When the Myspell files are updated you can merge the differences:
vimdiff xx_YY.orig.dic xx_YY.new.dic
3. Take over the changes you like in xx_YY.dic.
You may also need to change xx_YY.aff.
-4. Rename xx_YY.new.dic to xx_YY.orig.dic and xx_YY.new.aff to xx_YY.new.aff.
+4. Rename xx_YY.new.dic to xx_YY.orig.dic and xx_YY.new.aff to xx_YY.orig.aff.
SPELL FILE VERSIONS *E770* *E771* *E772*