Hi Bram, 2016/4/12 Tue 18:46:25 UTC+9 h_east wrote: > Hi Bram and List, > > I fixed documents two places. > Patch attached. > > BTW, built-in function `reltimefloat()` is not found in document. > Bram, Do you have written in the hand of the document? > > -- > Best regards, > Hirohito Higashi (a.k.a. h_east)
Here is another patch for the documents. * Fixed some typos. * Added missing items in index.txt. * Updated URL. * Removed outdated items from todo.txt. * Updated build instructions for the latest patchlevel. etc. Regards, Ken Takata -- -- 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 vim_dev+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.
# HG changeset patch # Parent 0273f420d6679cb2c7a45359a1f0a993515e973a diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -1205,7 +1205,7 @@ name '"'. This means you have to type t register writes to register "0. {Vi: register contents are lost when changing files, no '"'} -2. Numbered registers "0 to "9 *quote_number* *quote0* *quote1* +2. Numbered registers "0 to "9 *quote_number* *quote0* *quote1* *quote2* *quote3* *quote4* *quote9* Vim fills these registers with text from yank and delete commands. Numbered register 0 contains the text from the most recent yank command, diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1911,7 +1911,7 @@ foldlevel( {lnum}) Number fold level at foldtext() String line displayed for closed fold foldtextresult( {lnum}) String text for closed fold at {lnum} foreground() Number bring the Vim window to the foreground -function({name} [, {arglist}] [, {dict}]) +function( {name} [, {arglist}] [, {dict}]) Funcref reference to function {name} garbagecollect( [{atexit}]) none free memory, breaking cyclic references get( {list}, {idx} [, {def}]) any get item {idx} from {list} or {def} diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt --- a/runtime/doc/index.txt +++ b/runtime/doc/index.txt @@ -49,6 +49,7 @@ tag char action in Insert mode ~ |i_CTRL-G_k| CTRL-G k line up, to column where inserting started |i_CTRL-G_k| CTRL-G <Up> line up, to column where inserting started |i_CTRL-G_u| CTRL-G u start new undoable edit +|i_CTRL-G_U| CTRL-G U don't break undo with next cursor movement |i_<BS>| <BS> delete character before the cursor |i_digraph| {char1}<BS>{char2} enter digraph (only when 'digraph' option set) @@ -859,6 +860,7 @@ tag command note action in Visual ------------------------------------------------------------------------------ |v_CTRL-\_CTRL-N| CTRL-\ CTRL-N stop Visual mode |v_CTRL-\_CTRL-G| CTRL-\ CTRL-G go to mode specified with 'insertmode' +|v_CTRL-A| CTRL-A 2 add N to number in highlighted text |v_CTRL-C| CTRL-C stop Visual mode |v_CTRL-G| CTRL-G toggle between Visual mode and Select mode |v_<BS>| <BS> 2 Select mode: delete highlighted area @@ -867,6 +869,7 @@ tag command note action in Visual command |v_CTRL-V| CTRL-V make Visual mode blockwise or stop Visual mode +|v_CTRL-X| CTRL-X 2 subtract N from number in highlighted text |v_<Esc>| <Esc> stop Visual mode |v_CTRL-]| CTRL-] jump to highlighted tag |v_!| !{filter} 2 filter the highlighted lines through the @@ -923,6 +926,8 @@ tag command note action in Visual |v_a}| a} same as aB |v_c| c 2 delete highlighted area and start insert |v_d| d 2 delete highlighted area +|v_g_CTRL-A| g CTRL-A 2 add N to number in highlighted text +|v_g_CTRL-X| g CTRL-X 2 subtract N from number in highlighted text |v_gJ| gJ 2 join the highlighted lines without inserting spaces |v_gq| gq 2 format the highlighted lines diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -5052,7 +5052,7 @@ A jump table for the options with a shor without a limit. On 64 bit machines higher values might work. But hey, do you really need more than 2 Gbyte for text editing? Keep in mind that text is - stored in the swap file, one can edit files > 2 Gbyte anyay. We do + stored in the swap file, one can edit files > 2 Gbyte anyway. We do need the memory to store undo info. Also see 'maxmem'. diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -27,7 +27,7 @@ 1 probably not 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. @@ -338,9 +338,6 @@ handling the 0x80 as a second byte corre Patch to use two highlight groups for relative numbers. (Shaun Brady, 2016 Jan 30) -Weird encryption problems on Windows. (Ben Fritz, 2015 Feb 13) -Goes away when disabling the swap file. (might1, Feb 16) - MS-Windows: Crash opening very long file name starting with "\\". (Christian Brock, 2012 Jun 29) @@ -392,8 +389,6 @@ Patch to fix checking global option valu When 'showbreak' is set repeating a Visual operation counts the size of the 'showbreak' text as part of the operation. (Axel Bender, 2015 Jul 20) -Patch for matchit plugin related to multibyte chars. (Ken Takata, 2015 Jul 22) - Patch for multi-byte characters in langmap and applying a mapping on them. (Christian Brabandt, 2015 Jun 12, update July 25) Is this the right solution? Need to cleanup langmap behavior: @@ -644,9 +639,6 @@ various other commands. (ZyX, 2014 Mar Patch to skip sort if no line matches the expression. (Christian Brabandt, 2014 Jun 25) -Patch to add sortuniq(). (Cade Forester, 2014 Mar 19) -Or add uniq() instead? Patch by lcd47, but it has problems. - Patch to support expression argument to sort() instead of a function name. Yasuhiro Matsumoto, 2013 May 31. Or should we add a more general mechanism, like a lambda() function? diff --git a/src/INSTALL b/src/INSTALL --- a/src/INSTALL +++ b/src/INSTALL @@ -11,10 +11,10 @@ 4. Atari MiNT See INSTALLami.txt for Amiga See INSTALLmac.txt for Macintosh -See INSTALLpc.txt for PC (MS-DOS, Windows 95/98/NT/XP) +See INSTALLpc.txt for PC (Windows 95/98/NT/XP/Vista/7/8/10) See INSTALLvms.txt for VMS See INSTALLx.txt for cross-compiling on Unix -See ../README_390.txt for OS/390 Unix +See ../READMEdir/README_390.txt for OS/390 Unix See ../runtime/doc/os_beos.txt for BeBox diff --git a/src/INSTALLpc.txt b/src/INSTALLpc.txt --- a/src/INSTALLpc.txt +++ b/src/INSTALLpc.txt @@ -252,11 +252,13 @@ or on NT/2000/XP, go to the Control Pane System, Advanced, and edit the environment from there. If you use msys2 compilers, set your installed paths: - C:\msys2\mingw32\bin + C:\msys64\mingw32\bin -for 32bit. And 64bit: +for 32bit target. And 64bit target: - C:\msys2\mingw64\bin + C:\msys64\mingw64\bin + +(Both assuming 64-bit msys2 is installed.) Test if gcc is on your path. From a CMD (or COMMAND on '95/98) window: @@ -639,9 +641,10 @@ config.h and Ruby's DLL name. Here are t nmake -f Make_mvc.mak RUBY=C:\Ruby22 DYNAMIC_RUBY=yes RUBY_VER=22 RUBY_VER_LONG=2.2.0 RUBY_MSVCRT_NAME=msvcrt - WINVER=0x500 + WINVER=0x501 - WINVER must be set to >=0x500, when building with Ruby 2.1 or later. + If you set WINVER explicitly, it must be set to >=0x500, when building + with Ruby 2.1 or later. (Default is 0x501.) When using this trick, you also need to set RUBY_MSVCRT_NAME to msvcrt which is used for the Ruby's DLL name. @@ -652,9 +655,10 @@ After you install RubyInstaller, just ty mingw32-make -f Make_ming.mak RUBY=C:/Ruby22 DYNAMIC_RUBY=yes RUBY_VER=22 RUBY_VER_LONG=2.2.0 - WINVER=0x500 + WINVER=0x501 -WINVER must be set to >=0x500, when building with Ruby 2.1 or later. +If you set WINVER explicitly, it must be set to >=0x500, when building with +Ruby 2.1 or later. (Default is 0x501.) 12. Building with Tcl support