Hi Attached patch fixes a typos in documentation.
Regards Dominique -- -- 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/todo.txt b/runtime/doc/todo.txt index dbd293526..f6ea1dd76 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -46,7 +46,7 @@ Terminal emulator window: - Win32: Termdebug doesn't work, because gdb does not support mi2 on a tty. This plugin: https://github.com/cpiger/NeoDebug runs gdb as a job, redirecting input and output. - Open new console for for program with: "set new-console on" + Open new console for program with: "set new-console on" - Win32: Redirecting input does not work, half of Test_terminal_redir_file() is disabled. - Win32: Redirecting output works but includes escape sequences. @@ -77,7 +77,7 @@ On Win32 when not in the console and t_Co >= 256, allow using 'tgc'. Patch to fix arguments of :edit. (Dominique Pelle, 2018 May 28 #2966) -Ptch to update html syntax. (Jorge Maldonado Ventura, #2974) +Patch to update html syntax. (Jorge Maldonado Ventura, #2974) Patch to fix that restoring window doesn't work when 'winheight' is large. (Darrell Nash, 2018 May 30, #2971) Doesn't work? Issue #2970 @@ -91,7 +91,7 @@ Errors found with random data: More warnings from static analysis: https://lgtm.com/projects/g/vim/vim/alerts/?mode=list -Patch to make "is" and "as" work bettter. (Jason Franklin, 2018 May 19) +Patch to make "is" and "as" work better. (Jason Franklin, 2018 May 19) Patch to add tests for user and language completion. (Dominique Pelle, 2018 Jun 2, #2978) @@ -215,7 +215,7 @@ Add the debug command line history to viminfo. Avoid that "sign unplace id" does a redraw right away, esp. when there is a sequence of these commands. (Andy Stewart, 2018 Mar 16) -ch_sendraw() with long string does not try to read inbetween, which may cause +ch_sendraw() with long string does not try to read in between, which may cause a deadlock if the reading side is waiting for the write to finish. (Nate Bosch, 2018 Jan 13, #2548) @@ -933,7 +933,7 @@ Possibly include the needed code so that it can be build everywhere. Add a way to restart a timer. It's similar to timer_stop() and timer_start(), but the reference remains valid. -Need to try out instructions in INSSTALLpc.txt about how to install all +Need to try out instructions in INSTALLpc.txt about how to install all interfaces and how to build Vim with them. Appveyor build with self-installing executable, includes getting most interfaces: https://github.com/k-takata/vim/tree/chrisbra-appveyor-build diff --git a/runtime/doc/version5.txt b/runtime/doc/version5.txt index a3e3cfeb1..f87d904df 100644 --- a/runtime/doc/version5.txt +++ b/runtime/doc/version5.txt @@ -221,8 +221,8 @@ The most obvious side effect of this change is that when you source a vimrc file twice, the autocommands in it will be defined twice. To avoid this, do one of these: -- Remove any autocommands that might potentially defined twice before - defining them. Example: > +- Remove any autocommands that might already be defined before defining + them. Example: > :au! * *.ext :au BufEnter *.ext ...
