@@ -38,7 +38,11 @@ browser use: https://github.com/vim/vim/issues/1234
3838 *known-bugs*
3939-------------------- Known bugs and current work -----------------------
4040
41- runtest: for flaky test, try more often if error message changes (5 times)
41+ Make ":script 40" edit the script listed with number 40. Actually use
42+ ":scriptnames".
43+
44+ Download page: "A 64 bit version" link is wrong, use this one instead:
45+ https://github.com/vim/vim-win32-installer/releases/latest
4246
4347'incsearch' with :s: (#3321)
4448- :s/foo using CTRL-G moves to another line, should not happen, or use the
@@ -52,16 +56,23 @@ runtest: for flaky test, try more often if error message changes (5 times)
5256Prompt buffer:
5357- Add a command line history.
5458- delay next prompt until plugin gives OK?
59+ - add prompt_addtext({buf} , {expr} ) none add text to a prompt buffer
5560
5661Terminal debugger:
5762- Make prompt-buffer variant work better.
63+ - If breakpoints are deleted with "delete" in gdb the response is not parsed
64+ properly and the breakpoints in Vim are not removed.
5865- Add option to not open the program window. It's not used when attaching to
5966 an already running program. (M. Kelly)
6067- When only gdb window exists, on "quit" edit another buffer.
6168- Termdebug does not work when Vim was build with mzscheme: gdb hangs just
6269 after "run". Everything else works, including communication channel. Not
6370 initializing mzscheme avoid the problem, thus it's not some #ifdef.
6471- Add support for lldb? #3565
72+ - Could we do something similar for debugging Vim scripts? At least see the
73+ script while stepping through it. Simple version would use an extra window.
74+ More complete solution would actually run Vim in a Terminal an control it
75+ with another Vim instance.
6576
6677Terminal emulator window:
6778- GUI: When using ":set go+=!" a system() call causes the hit-enter prompt.
@@ -102,10 +113,13 @@ catch actual errors, overwriting a function from another script.
102113Update for German spell files: https://github.com/chrisbra/vim/compare/5e021c990f8817a50d3264782a5...3b27c92f297540761ebbd92d04fb3
103114(Christian Brabandt, 2018 Nov 4)
104115
105- Patch for comparing quickfix and location stacks. (Yegappan, 2018 Nov 15)
116+ Patch for nsis/README.txt and uninstal.txt (Ken Takata, 2018 Nov 17, #3614)
117+
118+ Patch to add commandline completion tests. (Dominique, #3622)
106119
107- Patch to fix visual block problem. (Tom M, tommm, 2018 Nov 14)
108- Also will write a test.
120+ Problem with Visual yank when 'linebreak' and 'showbreak' are set.
121+ Patch with tests, but it's not clear how it is supposed to work. (tommm, 2018
122+ Nov 17)
109123
110124Key mapping times out when using a timer in Gvim. (Michael Henry, 2018 Sep 9,
111125#3417)
@@ -114,6 +128,13 @@ Does not build with MinGW out of the box:
114128- _stat64 is not defined, need to use "struct stat" in vim.h
115129- WINVER conflict, should use 0x0600 by default?
116130
131+ Adding a fold with a marker in a C file doesn't add the comment /* */ if the
132+ line contains a * somewhere. Patch with a fix (Hirohito Higashi, 2018 Nov 22)
133+
134+ Crash in terminal with long multi-byte sequence. (2018 Nov 17, #3619)
135+ Dominique cannot reproduce. Update Nov 18.
136+ Suggested solution by Yasuhiro Matsumoto, 2018 Nov 18.
137+
117138Crash when mixing matchadd and substitute()? (Max Christian Pohle, 2018 May
11813913, #2910) Can't reproduce?
119140
@@ -123,16 +144,20 @@ Errors found with random data:
123144Win32 key codes are messy. Mike Williams tried to fix that, but now old
124145mappings no longer work. Create a new terminal for the better solution?
125146
147+ Patch to fix that appending makes items to be "recognized".
148+ (Yegappan, 2018 Nov 23). Reported by Daniel Hahler, #3633.
149+
126150Improve fallback for menu translations, to avoid having to create lots of
127151files that source the actual file. E.g. menu_da_de -> menu_da
128152Include part of #3242?
129153
130154When a terminal exit_cb closes the window, a following typed key is lost, if
131155it's in a mapping. (2018 Oct 6, #2302, #3522)
132156
133- Patch for dos installer to use logic instead of $HOME. (Ken Takata, Nov 5,
134- #3564)
157+ Patch to add FOR_ALL_FRAMES. (Yegappan, 2018 Nov 18)
135158
159+ Patch to resize to fit parent position when using ---windowid. ( Agorgianitis
160+ Loukas, 2018 Nov 17, #3616)
136161Completion mixes results from the current buffer with tags and other files.
137162Happens when typing CTRL-N while still search for results. E.g., type "b_" in
138163terminal.c and then CTRL-N twice.
@@ -144,9 +169,6 @@ Williams, 2018 Oct 30)
144169
145170Problem with :tlmenu: Detach item added with all modes? Issue #3563.
146171
147- Patch to avoid that increment or decrement gets interrupted by updating folds.
148- (Christian Brabandt, 2018 Nov 6, #3599)
149-
150172C syntax: {} inside () causes following {} to be highlighted as error.
151173(Michalis Giannakidis, 2006 Jun 1)
152174
@@ -162,9 +184,18 @@ Patch for this: (Aron Widforss, 2018 Oct 13, #3539)
162184 quickfix window, for example. (Gary Holloway)
163185 Also do 'sidescrolloff' .
164186
187+ Patch for ConPTY support, #3474: What is the status?
188+
165189Pasting foo} causes Vim to behave weird. (John Little, 2018 Jun 17)
166190Related to bracketed paste. I cannot reproduce it.
167191
192+ Using CTRL-L to add a character to the search string doesn't work for the last
193+ character in the file. (Smylers, 2018 Nov 17, #3620)
194+ Suggested patch by Hirohito Higashi, 2018 Nov 18.
195+
196+ Using CTRL-L to add a character to the search string that contains \v,
197+ punctiuation is repeated. (Smylers, 2018 Nov 17, #3621)
198+
168199":mksession" cannot handle a very long 'runtimepath' . (Timothy Madden, 21 Sep
1692002018, #3466) Patch from Christian, 2018 Oct 30 (with comments).
170201
@@ -321,6 +352,8 @@ Patch to fix that executable() may fail on very long filename in MS-Windows.
321352
322353Patch to be able to use hex numbers with :digraph. (Lcd, 2015 Sep 6)
323354Update Sep 7. Update by Christian Brabandt, 2015 Sep 8, 2016 Feb 1.
355+ Patch to be able to disable default digraphs (incomplete) (Eric Pruitt, 2018
356+ Nov 22).
324357
325358Make balloon_show() work outside of 'balloonexpr' ? Users expect it to work:
326359#2948. (related to #1512?)
0 commit comments