@@ -38,10 +38,6 @@ browser use: https://github.com/vim/vim/issues/1234
3838 *known-bugs*
3939-------------------- Known bugs and current work -----------------------
4040
41- Crash when ui_breakcheck() called from regexec() calls regexec() recursively.
42- (Andy Massimino, #3175)
43- Make regexp work recursively, store all globals in "rex"?
44-
4541Prompt buffer:
4642- Add a command line history.
4743- delay next prompt until plugin gives OK?
@@ -81,6 +77,8 @@ Does not build with MinGW out of the box:
8177- _stat64 is not defined, need to use "struct stat" in vim.h
8278- WINVER conflict, should use 0x0600 by default?
8379
80+ Patches for Python: #3162, #3263 (Ozaki Kiichi)
81+
8482Crash when mixing matchadd and substitute()? (Max Christian Pohle, 2018 May
858313, #2910) Can't reproduce?
8684
@@ -96,29 +94,43 @@ Patch to fix that +packages is always in output of :version.
9694More warnings from static analysis:
9795https://lgtm.com/projects/g/vim/vim/alerts/?mode=list
9896
97+ Patch for Perl 5.28 on Windows. (#3196)
98+
9999Pasting foo} causes Vim to behave weird. (John Little, 2018 Jun 17)
100100Related to bracketed paste. I cannot reproduce it.
101101
102102Patch replacing imp with importlib. (#3163)
103103
104+ Patch to make CTRL-S in mswin.vim work better. (#3211)
105+ But use "gi" instead of "a".
106+
104107Using ":file" in quickfix window during an autocommand doesn't work.
105108(Jason Franklin, 2018 May 23) Allow for using it when there is no argument.
106109
107110Patch in pull request #2967: Allow white space in sign text. (Ben Jackson)
108111
112+ Removing flags from 'cpoptions' breaks the Winbar buttons in termdebug.
113+ (Dominique Pelle, 2018 Jul 16)
114+
109115Whenever the file name is "~" then expand('%:p') returns $HOME. (Aidan
110116Shafran, 2018 Jun 23, #3072) Proposed patch by Aidan, 2018 Jun 24.
111117
112118Patch to set w_set_curswant when setting the cursor in language interfaces.
113119(David Hotham, 2018 Jun 22, #3060)
114120
121+ Problem with two buffers with the same name a/b, if it didn't exist before and
122+ is created outside of Vim. (dskloetg, 2018 Jul 16, #3219)
123+
115124Patch to make CTRL-W <CR> work properly in a quickfix window. (Jason Franklin,
1161252018 May 30)
117126
118- Patch to make mode() return something different for Normal mode when coming
119- from Insert mode with CTRL-O . (#3000)
127+ gethostbyname() is old, use getaddrinfo() if available. (#3227)
120128
121- Patches for Python: #3162, #3263 (Ozaki Kiichi)
129+ matchaddpos() gets slow with many matches. Proposal by Rick Howe, 2018 Jul
130+ 19.
131+
132+ Patch to make mode() return something different for Normal mode when coming
133+ from Insert mode with CTRL-O . (#3000) Useful for positioning the cursor.
122134
123135Script generated by :mksession does not work well if there are windows with
124136modified buffers
@@ -231,6 +243,10 @@ Does setting 'cursorline' cause syntax highlighting to slow down? Perhaps is
231243mess up the cache? (Mike Lee Williams, 2018 Jan 27, #2539)
232244Also: 'foldtext' is evaluated too often. (Daniel Hahler, #2773)
233245
246+ With 'foldmethod' "indent" and appending an empty line, what follows isn't
247+ included in the existing fold. Deleting the empty line and undo fixes it.
248+ (Oleg Koshovetc, 2018 Jul 15, #3214)
249+
234250When using :packadd files under "later" are not used, which is inconsistent
235251with packages under "start". (xtal8, #1994)
236252
@@ -256,6 +272,8 @@ confusing error message. (Wang Shidong, 2018 Jan 2, #2519)
256272
257273Add the debug command line history to viminfo.
258274
275+ Issue #686: apply 'F' in 'shortmess' to more messages. Also #3221.
276+
259277Avoid that "sign unplace id" does a redraw right away, esp. when there is a
260278sequence of these commands. (Andy Stewart, 2018 Mar 16)
261279
0 commit comments