summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-03-19patch 8.2.0415: bsdl filetype is not detectedv8.2.0415Bram Moolenaar
Problem: Bsdl filetype is not detected. Solution: Add an entry in the filetype list. (Daniel Kho, closes #5810)
2020-03-19patch 8.2.0414: channel connect_waittime() test is flakyv8.2.0414Bram Moolenaar
Problem: Channel connect_waittime() test is flaky. Solution: Set the test_is_flaky flag. Use test_is_flaky for more tests.
2020-03-19patch 8.2.0413: buffer menu does not handle special buffers properlyv8.2.0413Bram Moolenaar
Problem: Buffer menu does not handle special buffers properly. Solution: Keep a dictionary with buffer names to reliably keep track of entries. Also trigger BufFilePre and BufFilePost for command-line and terminal buffers when the name changes.
2020-03-19patch 8.2.0412: MS-Windows: cannot use vimtutor from the start menuv8.2.0412Bram Moolenaar
Problem: MS-Windows: cannot use vimtutor from the start menu. Solution: Better check for writable directory. Use the right path for the executable. (Wu Yongwei, closes #5774, closes #5756)
2020-03-19patch 8.2.0411: Mac: breakcheck is using a value from the stone agesv8.2.0411Bram Moolenaar
Problem: Mac: breakcheck is using a value from the stone ages. Solution: Delete BREAKCHECK_SKIP from the Mac header file. (Ben Jackson)
2020-03-19patch 8.2.0410: channel test fails too often on slow Macv8.2.0410Bram Moolenaar
Problem: Channel test fails too often on slow Mac. Solution: Increase waiting time to 10 seconds.
2020-03-19patch 8.2.0409: search test leaves file behindv8.2.0409Bram Moolenaar
Problem: Search test leaves file behind. Solution: Delete the file. Also use Check commands.
2020-03-19patch 8.2.0408: delete() commented out for testingv8.2.0408Bram Moolenaar
Problem: Delete() commented out for testing. Solution: Undo commenting-out.
2020-03-19patch 8.2.0407: no early check if :find and :sfind have an argumentv8.2.0407Bram Moolenaar
Problem: No early check if :find and :sfind have an argument. Solution: Add EX_NEEDARG.
2020-03-19patch 8.2.0406: FileReadCmd event not well testedv8.2.0406Bram Moolenaar
Problem: FileReadCmd event not well tested. Solution: Add a test.
2020-03-19patch 8.2.0405: MSVC: build fails with some combination of featuresv8.2.0405Bram Moolenaar
Problem: MSVC: build fails with some combination of features. Solution: Enable CHANNEL if TERMINAL is enabled. (Mike Williams)
2020-03-19patch 8.2.0404: writefile() error does not give a hintv8.2.0404Bram Moolenaar
Problem: Writefile() error does not give a hint. Solution: Add remark about first argument.
2020-03-19patch 8.2.0403: when 'buftype' is "nofile" there is no overwrite checkv8.2.0403Bram Moolenaar
Problem: When 'buftype' is "nofile" there is no overwrite check. Solution: Also check for existing file when 'buftype' is set. (closes #5807)
2020-03-18patch 8.2.0402: setting local instead of global flagv8.2.0402Bram Moolenaar
Problem: Setting local instead of global flag. Solution: Prepend "g:" to "test_is_flaky".
2020-03-18patch 8.2.0401: not enough test coverage for evalvars.cv8.2.0401Bram Moolenaar
Problem: Not enough test coverage for evalvars.c. Solution: Add more tests. (Yegappan Lakshmanan, closes #5804)
2020-03-18patch 8.2.0400: not all tests using a terminal are in the list of flaky testsv8.2.0400Bram Moolenaar
Problem: Not all tests using a terminal are in the list of flaky tests. Solution: Introduce the test_is_flaky flag.
2020-03-18patch 8.2.0399: various memory leaksv8.2.0399Bram Moolenaar
Problem: Various memory leaks. Solution: Avoid the leaks. (Ozaki Kiichi, closes #5803)
2020-03-17patch 8.2.0398: profile test fails when two functions take same timev8.2.0398Bram Moolenaar
Problem: Profile test fails when two functions take same time. Solution: Add a short sleep in once function. (closes #5797)
2020-03-16patch 8.2.0397: delayed screen update when using undo from Insert modev8.2.0397Bram Moolenaar
Problem: Delayed screen update when using undo from Insert mode. Solution: Update w_topline and cursor shape before sleeping. (closes #5790)
2020-03-16patch 8.2.0396: cmdexpand.c insufficiently testedv8.2.0396Bram Moolenaar
Problem: Cmdexpand.c insufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5789)
2020-03-16patch 8.2.0395: build fails with FEAT_EVAL but without FEAT_MENUv8.2.0395Bram Moolenaar
Problem: Build fails with FEAT_EVAL but without FEAT_MENU. Solution: Add #ifdef. (John Marriott)
2020-03-16patch 8.2.0394: Coverity complains about using NULL pointerv8.2.0394Bram Moolenaar
Problem: Coverity complains about using NULL pointer. Solution: Use empty string when option value is NULL.
2020-03-16patch 8.2.0393: Coverity warns for not using return valuev8.2.0393Bram Moolenaar
Problem: Coverity warns for not using return value. Solution: Add (void).
2020-03-16patch 8.2.0392: Coverity warns for using array index out of rangev8.2.0392Bram Moolenaar
Problem: Coverity warns for using array index out of range. Solution: Add extra "if" to avoid warning.
2020-03-16patch 8.2.0391: CI test coverage droppedv8.2.0391Bram Moolenaar
Problem: CI test coverage dropped. Solution: Set $DISPLAY also for non-GUI builds. (James McCoy, closes #5788)
2020-03-15patch 8.2.0390: terminal postponed scrollback test is flakyv8.2.0390Bram Moolenaar
Problem: Terminal postponed scrollback test is flaky. Solution: Add delay in between sending keys. Rename dump files.
2020-03-15patch 8.2.0389: delayed redraw when shifting text from Insert modev8.2.0389Bram Moolenaar
Problem: Delayed redraw when shifting text from Insert mode. Solution: Use msg_attr_keep() instead of msg(). (closes #5782)
2020-03-15patch 8.2.0388: printmbcharset option not testedv8.2.0388Bram Moolenaar
Problem: Printmbcharset option not tested. Solution: Add a test. Enable PostScript for AppVeyor build. (Dominique Pelle, closes #5783)
2020-03-15patch 8.2.0387: error for possible NULL argument to qsort()v8.2.0387Bram Moolenaar
Problem: Error for possible NULL argument to qsort(). Solution: Don't call qsort() when there is nothing to sort. (Dominique Pelle, closes #5780)
2020-03-15patch 8.2.0386: part from unfinished patch got includedv8.2.0386Bram Moolenaar
Problem: Part from unfinished patch got included. Solution: Undo that part.
2020-03-15patch 8.2.0385: menu functionality insufficiently testedv8.2.0385Bram Moolenaar
Problem: Menu functionality insufficiently tested. Solution: Add tests. Add menu_info(). (Yegappan Lakshmanan, closes #5760)
2020-03-15patch 8.2.0384: Travis CI has warningsv8.2.0384Bram Moolenaar
Problem: Travis CI has warnings. Solution: Avoid warnings, clean up the config. (Ozaki Kiichi, closes #5779)
2020-03-15patch 8.2.0383: wrong feature check causes test not to be runv8.2.0383Bram Moolenaar
Problem: Wrong feature check causes test not to be run. Solution: Use CheckFunction instead of CheckFeature. (Ozaki Kiichi, closes #5781)
2020-03-15patch 8.2.0382: some tests fail when run under valgrindv8.2.0382Bram Moolenaar
Problem: Some tests fail when run under valgrind. Solution: Increase timeouts.
2020-03-14patch 8.2.0381: using freed memory with :lvimgrep and autocommandv8.2.0381Bram Moolenaar
Problem: Using freed memory with :lvimgrep and autocommand. (extracted from POC by Dominique Pelle) Solution: Avoid deleting a dummy buffer used in a window. (closes #5777)
2020-03-14patch 8.2.0380: tiny popup when creating a terminal popup without minwidthv8.2.0380Bram Moolenaar
Problem: Tiny popup when creating a terminal popup without minwidth. Solution: Use a default mininum size of 5 lines of 20 characters.
2020-03-14Update runtime filesBram Moolenaar
2020-03-14patch 8.2.0379: gcc warns for ambiguous elsev8.2.0379Bram Moolenaar
Problem: Gcc warns for ambiguous else. Solution: Add braces. (Dominique Pelle, closes #5778)
2020-03-13patch 8.2.0378: prop_find() does not find all propsv8.2.0378Bram Moolenaar
Problem: prop_find() does not find all props. Solution: Check being in the start line. (Axel Forsman, closes #5776)
2020-03-13patch 8.2.0377: no CI test for a big-endian systemv8.2.0377Bram Moolenaar
Problem: No CI test for a big-endian system. Solution: Test with s390x. (James McCoy, closes #5772)
2020-03-13patch 8.2.0376: nasty callback test fails on some systemsv8.2.0376Bram Moolenaar
Problem: Nasty callback test fails on some systems. Solution: Increase the sleep time.
2020-03-13patch 8.2.0375: Coverity warning for not using return valuev8.2.0375Bram Moolenaar
Problem: Coverity warning for not using return value. Solution: Move error message to separate function.
2020-03-12patch 8.2.0374: using wrong printf directive for jump locationv8.2.0374Bram Moolenaar
Problem: Using wrong printf directive for jump location. Solution: Change "%lld" to "%d". (James McCoy, closes #5773)
2020-03-11patch 8.2.0373: type of term_sendkeys() is unknownv8.2.0373Bram Moolenaar
Problem: Type of term_sendkeys() is unknown. Solution: Just return zero. (closes #5762)
2020-03-11patch 8.2.0372: prop_find() may not find text property at start of the linev8.2.0372Bram Moolenaar
Problem: Prop_find() may not find text property at start of the line. Solution: Adjust the loop to find properties. (Axel Forsman, closes #5761, closes #5663)
2020-03-11patch 8.2.0371: crash with combination of terminal popup and autocmdv8.2.0371Bram Moolenaar
Problem: Crash with combination of terminal popup and autocmd. Solution: Disallow closing a popup that is the current window. Add a check that the current buffer is valid. (closes #5754)
2020-03-11patch 8.2.0370: the typebuf_was_filled flag is sometimes not resetv8.2.0370Bram Moolenaar
Problem: The typebuf_was_filled flag is sometimes not reset, which may cause a hang. Solution: Make sure typebuf_was_filled is reset when the typeahead buffer is empty.
2020-03-10patch 8.2.0369: various Normal mode commands not fully testedv8.2.0369Bram Moolenaar
Problem: Various Normal mode commands not fully tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5751)
2020-03-09patch 8.2.0368: Vim9: import that redefines local variable does not failv8.2.0368Bram Moolenaar
Problem: Vim9: import that redefines local variable does not fail. Solution: Check for already defined symbols.
2020-03-09patch 8.2.0367: can use :pedit in a popup windowv8.2.0367Bram Moolenaar
Problem: Can use :pedit in a popup window. Solution: Disallow it.