Hi Bram,

I was received document typos and suggestions from some Japanese Vim users in 
vim-jp.
I summarized in one of the patch.
Please check an attached patch.

This section describes the point change in-line below.

doc> diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
doc> index f1425ba..1d09d34 100644
doc> --- a/runtime/doc/eval.txt
doc> +++ b/runtime/doc/eval.txt
doc> @@ -2984,6 +2984,7 @@ cursor({list})
doc>  
doc>            When there is one argument {list} this is used as a |List|
doc>            with two, three or four item:
doc> +                  [{lnum}, {col}]
Suggestion.

doc>                    [{lnum}, {col}, {off}]
doc>                    [{lnum}, {col}, {off}, {curswant}]
doc>            This is like the return value of |getpos()| or |getcurpos()|,
doc> @@ -4621,7 +4622,7 @@ job_status({job})                                    
*job_status()* *E916*
doc>                    "fail"  job failed to start
doc>                    "dead"  job died or was stopped after running
doc>            
doc> -          If an exit callback was set with the "exit-cb" option and the
doc> +          If an exit callback was set with the "exit_cb" option and the
Typo.

doc>            job is now detected to be "dead" the callback will be invoked.
doc>  
doc>            For more information see |job_info()|.
doc> diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
doc> index f71c4ad..b33d5bd 100644
doc> --- a/runtime/doc/options.txt
doc> +++ b/runtime/doc/options.txt
doc> @@ -1070,7 +1070,7 @@ A jump table for the options with a short 
description can be found at |Q_op|.
doc>  
doc>    Note that environment variables are not expanded.  If you want to use
doc>    $HOME you must expand it explicitly, e.g.: >
doc> -          :let backupskip = escape(expand('$HOME'), '\') . '/tmp/*'
doc> +          :let &backupskip = escape(expand('$HOME'), '\') . '/tmp/*'
Missing `&`.

doc>  
doc>  < Note that the default also makes sure that "crontab -e" works (when a
doc>    backup would be made by renaming the original file crontab won't see
doc> @@ -1245,7 +1245,7 @@ A jump table for the options with a short 
description can be found at |Q_op|.
doc>    break if 'linebreak' is on.  Only works for ASCII and also for 8-bit
doc>    characters when 'encoding' is an 8-bit encoding.
doc>  
doc> -                          *'breakindent'* *'bri'* *'nobreakindent'* 
*'nobri'*
doc> +                      *'breakindent'* *'bri'* *'nobreakindent'* *'nobri'*
Too many indentation.  (wrap had occurred)

doc>  'breakindent' 'bri'       boolean (default off)
doc>                    local to window
doc>                    {not in Vi}
doc> diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt
doc> index 2a3d2c4..efed4de 100644
doc> --- a/runtime/doc/pattern.txt
doc> +++ b/runtime/doc/pattern.txt
doc> @@ -1104,8 +1104,8 @@ x    A single character, with no special meaning, 
matches itself
doc>      '/', alphabetic, numeric, '_' or '~'.
doc>      These items only work for 8-bit characters, except [:lower:] and
doc>      [:upper:] also work for multi-byte characters when using the new
doc> -    regexp engine.  In the future these items may work for multi-byte
doc> -    characters.
doc> +    regexp engine.  See |two-engines|.  In the future these items may
doc> +    work for multi-byte characters.
Suggest to add the `See |two-engines|`.

doc>                                                    */[[=* *[==]*
doc>    - An equivalence class.  This means that characters are matched that
doc>      have almost the same meaning, e.g., when ignoring accents.  This
doc> diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
doc> index e2c4c2f..29017e0 100644
doc> --- a/runtime/doc/repeat.txt
doc> +++ b/runtime/doc/repeat.txt
doc> @@ -251,7 +251,7 @@ For writing a Vim script, see chapter 41 of the user 
manual |usr_41.txt|.
doc>                    Also see |pack-add|.
doc>  
doc>                                            *:packl* *:packloadall*
doc> -:packloadall[!]           Load all packages in the "start" directories 
under
doc> +:packl[oadall][!] Load all packages in the "start" directories under
Missing [].

doc>                    'packpath'.  The directories found are added to
doc>                    'runtimepath'.
doc>                    This is normally done automatically during startup,
doc> diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
doc> index e9a6d91..70a2e56 100644
doc> --- a/runtime/doc/todo.txt
doc> +++ b/runtime/doc/todo.txt
doc> @@ -27,7 +27,7 @@ Priority classification:
doc>  See |develop.txt| for development plans.  You can vote for which items 
should
doc>  be worked on, but only if you sponsor Vim development.  See |sponsor|.
doc>  
doc> -Issues can also be entered online: 
http://code.google.com/p/vim/issues/list
doc> +Issues can also be entered online: https://github.com/vim/vim/issues
Suggest to replace redirect destination's URL.

doc>  Updates will be forwarded to the vim_dev maillist.  Issues entered there 
will
doc>  not be repeated below, unless there is extra information.
doc>  

Thanks.
--
Best regards,
Hirohito Higashi (a.k.a. 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 f1425ba..1d09d34 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -2984,6 +2984,7 @@ cursor({list})
 
 		When there is one argument {list} this is used as a |List|
 		with two, three or four item:
+			[{lnum}, {col}]
 			[{lnum}, {col}, {off}]
 			[{lnum}, {col}, {off}, {curswant}]
 		This is like the return value of |getpos()| or |getcurpos()|,
@@ -4621,7 +4622,7 @@ job_status({job})					*job_status()* *E916*
 			"fail"	job failed to start
 			"dead"	job died or was stopped after running
 		
-		If an exit callback was set with the "exit-cb" option and the
+		If an exit callback was set with the "exit_cb" option and the
 		job is now detected to be "dead" the callback will be invoked.
 
 		For more information see |job_info()|.
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index f71c4ad..b33d5bd 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1070,7 +1070,7 @@ A jump table for the options with a short description can be found at |Q_op|.
 
 	Note that environment variables are not expanded.  If you want to use
 	$HOME you must expand it explicitly, e.g.: >
-		:let backupskip = escape(expand('$HOME'), '\') . '/tmp/*'
+		:let &backupskip = escape(expand('$HOME'), '\') . '/tmp/*'
 
 <	Note that the default also makes sure that "crontab -e" works (when a
 	backup would be made by renaming the original file crontab won't see
@@ -1245,7 +1245,7 @@ A jump table for the options with a short description can be found at |Q_op|.
 	break if 'linebreak' is on.  Only works for ASCII and also for 8-bit
 	characters when 'encoding' is an 8-bit encoding.
 
-				*'breakindent'* *'bri'* *'nobreakindent'* *'nobri'*
+			    *'breakindent'* *'bri'* *'nobreakindent'* *'nobri'*
 'breakindent' 'bri'	boolean (default off)
 			local to window
 			{not in Vi}
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt
index 2a3d2c4..efed4de 100644
--- a/runtime/doc/pattern.txt
+++ b/runtime/doc/pattern.txt
@@ -1104,8 +1104,8 @@ x	A single character, with no special meaning, matches itself
 	  '/', alphabetic, numeric, '_' or '~'.
 	  These items only work for 8-bit characters, except [:lower:] and
 	  [:upper:] also work for multi-byte characters when using the new
-	  regexp engine.  In the future these items may work for multi-byte
-	  characters.
+	  regexp engine.  See |two-engines|.  In the future these items may
+	  work for multi-byte characters.
 							*/[[=* *[==]*
 	- An equivalence class.  This means that characters are matched that
 	  have almost the same meaning, e.g., when ignoring accents.  This
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index e2c4c2f..29017e0 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -251,7 +251,7 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
 			Also see |pack-add|.
 
 						*:packl* *:packloadall*
-:packloadall[!]		Load all packages in the "start" directories under
+:packl[oadall][!]	Load all packages in the "start" directories under
 			'packpath'.  The directories found are added to
 			'runtimepath'.
 			This is normally done automatically during startup,
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index e9a6d91..70a2e56 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -27,7 +27,7 @@ Priority classification:
 See |develop.txt| for development plans.  You can vote for which items should
 be worked on, but only if you sponsor Vim development.  See |sponsor|.
 
-Issues can also be entered online: http://code.google.com/p/vim/issues/list
+Issues can also be entered online: https://github.com/vim/vim/issues
 Updates will be forwarded to the vim_dev maillist.  Issues entered there will
 not be repeated below, unless there is extra information.
 

Raspunde prin e-mail lui