• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Révisionef90e5bbb971213f211373c587eebf9ded82f1eb (tree)
l'heure2019-12-12 07:15:04
AuteurBram Moolenaar <Bram@vim....>
CommiterBram Moolenaar

Message de Log

Minor runtime file updates.

Commit: https://github.com/vim/vim/commit/469bdbde1e8ea8110705327ab193acca79296742
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Dec 11 23:05:48 2019 +0100

Minor runtime file updates.

Change Summary

Modification

diff -r b56a6c6d1772 -r ef90e5bbb971 runtime/doc/autocmd.txt
--- a/runtime/doc/autocmd.txt Wed Dec 11 23:00:04 2019 +0100
+++ b/runtime/doc/autocmd.txt Wed Dec 11 23:15:04 2019 +0100
@@ -1,4 +1,4 @@
1-*autocmd.txt* For Vim version 8.1. Last change: 2019 Sep 16
1+*autocmd.txt* For Vim version 8.1. Last change: 2019 Dec 11
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -387,6 +387,8 @@
387387 to the buffer list.
388388 Also used just after a buffer in the buffer
389389 list has been renamed.
390+ Not triggered for the initial buffers created
391+ during startup.
390392 The BufCreate event is for historic reasons.
391393 NOTE: When this autocommand is executed, the
392394 current buffer "%" may be different from the
diff -r b56a6c6d1772 -r ef90e5bbb971 runtime/doc/pi_netrw.txt
--- a/runtime/doc/pi_netrw.txt Wed Dec 11 23:00:04 2019 +0100
+++ b/runtime/doc/pi_netrw.txt Wed Dec 11 23:15:04 2019 +0100
@@ -1,4 +1,4 @@
1-*pi_netrw.txt* For Vim version 8.1. Last change: 2019 Dec 09
1+*pi_netrw.txt* For Vim version 8.1. Last change: 2019 Dec 10
22
33 ------------------------------------------------
44 NETRW REFERENCE MANUAL by Charles E. Campbell
@@ -1184,7 +1184,7 @@
11841184 *.netrwbook*
11851185 Bookmarks are retained in between sessions of vim in a file called .netrwbook
11861186 as a |List|, which is typically stored in the first directory on the user's
1187-runtimepath'; entries are kept in sorted order.
1187+'runtimepath'; entries are kept in sorted order.
11881188
11891189 If there are marked files and/or directories, mb will add them to the bookmark
11901190 list.
diff -r b56a6c6d1772 -r ef90e5bbb971 runtime/doc/starting.txt
--- a/runtime/doc/starting.txt Wed Dec 11 23:00:04 2019 +0100
+++ b/runtime/doc/starting.txt Wed Dec 11 23:15:04 2019 +0100
@@ -1,4 +1,4 @@
1-*starting.txt* For Vim version 8.1. Last change: 2019 Jul 30
1+*starting.txt* For Vim version 8.1. Last change: 2019 Dec 11
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -928,7 +928,8 @@
928928 displayed yet).
929929 When switching screens, it happens now. Redrawing starts.
930930 If the "-q" flag was given to Vim, the first error is jumped to.
931- Buffers for all windows will be loaded.
931+ Buffers for all windows will be loaded, without triggering |BufAdd|
932+ autocommands.
932933
933934 12. Execute startup commands
934935 If a "-t" flag was given to Vim, the tag is jumped to.
diff -r b56a6c6d1772 -r ef90e5bbb971 runtime/doc/todo.txt
--- a/runtime/doc/todo.txt Wed Dec 11 23:00:04 2019 +0100
+++ b/runtime/doc/todo.txt Wed Dec 11 23:15:04 2019 +0100
@@ -1,4 +1,4 @@
1-*todo.txt* For Vim version 8.1. Last change: 2019 Dec 08
1+*todo.txt* For Vim version 8.1. Last change: 2019 Dec 11
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -120,6 +120,8 @@
120120
121121 Patch to move duplicated code to a function. (Yegappan Lakshmanan, #5330)
122122
123+Patch to use more FOR_ALL_ macros and use them. (Yegappan Lakshmanan, #5339)
124+
123125 Running test_gui and test_gui_init with Motif sometimes kills the window
124126 manager. Problem with Motif? Now test_gui crashes in submenu_change().
125127 Athena is OK.
@@ -128,6 +130,9 @@
128130 Patch to properly break CJK lines: Anton Kochkov, #3875
129131 Flag in 'formatoptions' is not used in the tests.
130132
133+Patch to add 'vtp' option. (#5344)
134+Needs better docs. Is there a better name?
135+
131136 undo result wrong: Masato Nishihata, #4798
132137
133138 Undo puts cursor in wrong line after "cG<Esc>" undo.
diff -r b56a6c6d1772 -r ef90e5bbb971 runtime/doc/version8.txt
--- a/runtime/doc/version8.txt Wed Dec 11 23:00:04 2019 +0100
+++ b/runtime/doc/version8.txt Wed Dec 11 23:15:04 2019 +0100
@@ -1,4 +1,4 @@
1-*version8.txt* For Vim version 8.1. Last change: 2019 Dec 09
1+*version8.txt* For Vim version 8.1. Last change: 2019 Dec 11
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41061,6 +41061,82 @@
4106141061 Solution: Skip the test when imgetstatus() doesn't work.
4106241062 Files: src/testdir/test_iminsert.vim
4106341063
41064+Patch 8.1.2411
41065+Problem: Function argument copied unnecessarily.
41066+Solution: Use the argument directly.
41067+Files: src/ex_docmd.c
41068+
41069+Patch 8.1.2412
41070+Problem: Crash when evaluating expression with error. (Dhiraj Mishra)
41071+Solution: Check parsing failed. (closes #5329)
41072+Files: src/eval.c, src/testdir/test_lambda.vim
41073+
41074+Patch 8.1.2413
41075+Problem: Cannot update ex_cmdidxs.h on MS-Windows.
41076+Solution: Add build rules and dependencies. (Ken Takata, closes #5337)
41077+Files: src/Make_cyg_ming.mak, src/Make_mvc.mak, src/Make_vms.mms
41078+
41079+Patch 8.1.2414
41080+Problem: MS-Windows: properties dialog box shows wrong character.
41081+Solution: Explicitly specify encoding. (Ken Takata, closes #5338)
41082+Files: src/vim.rc
41083+
41084+Patch 8.1.2415
41085+Problem: Popup menu flickers if an info popup is used. (Nick Jensen)
41086+Solution: Set the pum_skip_redraw flag.
41087+Files: src/popupmenu.c
41088+
41089+Patch 8.1.2416
41090+Problem: Loading menus sets v:errmsg.
41091+Solution: Avoid setting v:errmsg and add a test for that. (Jason Franklin)
41092+Files: runtime/delmenu.vim, runtime/menu.vim, src/testdir/test_menu.vim
41093+
41094+Patch 8.1.2417
41095+Problem: MinGW/Cygwin build does not clean up all files.
41096+Solution: Delete *.map files. (Michael Soyka)
41097+Files: src/Make_cyg_ming.mak
41098+
41099+Patch 8.1.2418
41100+Problem: bufnr('$') is wrong after recycling popup buffer.
41101+Solution: Sort the buffer list by buffer number. (closes #5335)
41102+Files: src/buffer.c, src/testdir/test_popupwin.vim
41103+
41104+Patch 8.1.2419
41105+Problem: With a long file name the hit-enter prompt appears. (J. Lewis
41106+ Muir)
41107+Solution: When checking for text to wrap don't do this when outputing a CR.
41108+Files: src/message.c, src/testdir/test_display.vim,
41109+ src/testdir/dumps/Test_long_file_name_1.dump
41110+
41111+Patch 8.1.2420
41112+Problem: Crash when calling popup_close() in win_execute().
41113+Solution: Disallow popup_close() in popup window. (Yasuhiro Matsumoto,
41114+ closes #5345)
41115+Files: src/popupwin.c, src/testdir/test_popupwin.vim
41116+
41117+Patch 8.1.2421
41118+Problem: Test88 is old style.
41119+Solution: Turn into a new style test. (Yegappan Lakshmanan, closes #5347)
41120+Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/Make_vms.mms,
41121+ src/testdir/test88.in, src/testdir/test88.ok,
41122+ src/testdir/test_conceal.vim, src/testdir/test_python2.vim
41123+ src/testdir/test_python3.vim
41124+
41125+Patch 8.1.2422
41126+Problem: "make depend" does not work correctly for libvterm.
41127+Solution: Fix build dependencies. And a few minor improvements.
41128+Files: src/Makefile, src/filepath.c, src/insexpand.c, src/main.c
41129+
41130+Patch 8.1.2423
41131+Problem: MS-Windows properties shows version as "8, 1, 0".
41132+Solution: Use "8.1.0". (Ken Takata, closes #5342)
41133+Files: src/vim.rc
41134+
41135+Patch 8.1.2424
41136+Problem: MS-Windows: console buffer is resized unnecessarily.
41137+Solution: Only call ResizeConBuf() when the size differs. (Nobuhiro
41138+ Takasaki, closes #5343)
41139+Files: src/os_win32.c
4106441140
4106541141
4106641142 vim:tw=78:ts=8:noet:ft=help:norl:
diff -r b56a6c6d1772 -r ef90e5bbb971 runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
--- a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim Wed Dec 11 23:00:04 2019 +0100
+++ b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim Wed Dec 11 23:15:04 2019 +0100
@@ -2,7 +2,7 @@
22 "
33 " Author: Bram Moolenaar
44 " Copyright: Vim license applies, see ":help license"
5-" Last Update: 2018 Jun 3
5+" Last Change: 2019 Dec 11
66 "
77 " WORK IN PROGRESS - Only the basics work
88 " Note: On MS-Windows you need a recent version of gdb. The one included with
@@ -626,7 +626,7 @@
626626 call system(printf('powershell -Command "add-type -AssemblyName microsoft.VisualBasic;[Microsoft.VisualBasic.Interaction]::AppActivate(%d);"', s:pid))
627627 endif
628628 else
629- win_gotoid(s:ptywin)
629+ call win_gotoid(s:ptywin)
630630 endif
631631 endfunc
632632
Afficher sur ancien navigateur de dépôt.