summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-02-20patch 8.2.0286: cannot use popup_close() for a terminal popupv8.2.0286Bram Moolenaar
Problem: Cannot use popup_close() for a terminal popup. Solution: Allow using popup_close(). (closes #5666)
2020-02-19patch 8.2.0285: unused error message; cannot create s:varv8.2.0285Bram Moolenaar
Problem: Unused error message. Cannot create s:var. Solution: Remove the error message. Make assignment to s:var work.
2020-02-19patch 8.2.0284: Vim9: assignment test failsv8.2.0284Bram Moolenaar
Problem: Vim9: assignment test fails. Solution: Avoid duplicating "s:".
2020-02-19patch 8.2.0283: Vim9: failing to load script var not testedv8.2.0283Bram Moolenaar
Problem: Vim9: failing to load script var not tested. Solution: Add more tests. Fix using s: in old script.
2020-02-19patch 8.2.0282: Vim9: setting number option not testedv8.2.0282Bram Moolenaar
Problem: Vim9: setting number option not tested. Solution: Add more tests. Fix assigning to global variable.
2020-02-19patch 8.2.0281: two placed signs in the same line are not combinedv8.2.0281Bram Moolenaar
Problem: Two placed signs in the same line are not combined. E.g. in the terminal debugger a breakpoint and the PC cannot be both be displayed. Solution: Combine the sign column and line highlight attributes.
2020-02-19patch 8.2.0280: Vim9: throw in :def function not caught higher upv8.2.0280Bram Moolenaar
Problem: Vim9: throw in :def function not caught higher up. Solution: Set "need_rethrow".
2020-02-19patch 8.2.0279: Vim9: no test for deleted :def functionv8.2.0279Bram Moolenaar
Problem: Vim9: no test for deleted :def function. Solution: Add a test. Clear uf_cleared flag when redefining a function.
2020-02-19patch 8.2.0278: channel test is flaky on Macv8.2.0278Bram Moolenaar
Problem: Channel test is flaky on Mac. Solution: Reset variable before sending message.
2020-02-19patch 8.2.0277: Vim9: not all instructions covered by testsv8.2.0277Bram Moolenaar
Problem: Vim9: not all instructions covered by tests. Solution: Add more test cases.
2020-02-19patch 8.2.0276: Vim9: not allowing space before ")" in function callv8.2.0276Bram Moolenaar
Problem: Vim9: not allowing space before ")" in function call is too restrictive. (Ben Jackson) Solution: Skip space before the ")". Adjust other space checks.
2020-02-18patch 8.2.0275: some Ex code not covered by testsv8.2.0275Bram Moolenaar
Problem: Some Ex code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes #5659)
2020-02-18patch 8.2.0274: hang with combination of feedkeys(), Ex mode and :globalv8.2.0274Bram Moolenaar
Problem: Hang with combination of feedkeys(), Ex mode and :global. (Yegappan Lakshmanan) Solution: Add the pending_exmode_active flag.
2020-02-17patch 8.2.0273: MS-Windows uninstall may delete wrong batch filev8.2.0273Bram Moolenaar
Problem: MS-Windows uninstall may delete wrong batch file. Solution: Add specific marker in the generated batch file. (Ken Takata, closes #5654)
2020-02-17patch 8.2.0272: ":helptags ALL" gives error for some directoriesv8.2.0272Bram Moolenaar
Problem: ":helptags ALL" gives error for directories without write permission. (Matěj Cepl) Solution: Ignore errors for ":helptags ALL". (Ken Takata, closes #5026, closes #5652)
2020-02-17patch 8.2.0271: the "num64" feature is available everywherev8.2.0271Bram Moolenaar
Problem: The "num64" feature is available everywhere and building without it causes problems. Solution: Graduage the "num64" feature. (James McCoy, closes #5650)
2020-02-17patch 8.2.0270: some code not covered by testsv8.2.0270Bram Moolenaar
Problem: Some code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes #5649)
2020-02-17patch 8.2.0269: Vim9: operator after list index does not workv8.2.0269Bram Moolenaar
Problem: Vim9: operator after list index does not work. (Yasuhiro Matsumoto) Solution: After indexing a list change the type to the list member type. (closes #5651)
2020-02-17patch 8.2.0268: trycatch test failsv8.2.0268Bram Moolenaar
Problem: Trycatch test fails. Solution: When calling function fails only check for following command, do not give another error.
2020-02-16patch 8.2.0267: no check for a following cmd when calling a function failsv8.2.0267Bram Moolenaar
Problem: No check for a following command when calling a function fails. Solution: Also check for a following command when inside a try block. (closes #5642)
2020-02-16patch 8.2.0266: terminal in popup test sometimes fails on Macv8.2.0266Bram Moolenaar
Problem: Terminal in popup test sometimes fails on Mac. Solution: Add a short delay.
2020-02-16patch 8.2.0265: "eval" after "if 0" doesn't check for following commandv8.2.0265Bram Moolenaar
Problem: "eval" after "if 0" doesn't check for following command. Solution: Add "eval" to list of commands that check for a following command. (closes #5640)
2020-02-16patch 8.2.0264: fileformat test still fails on MS-Windowsv8.2.0264Bram Moolenaar
Problem: Fileformat test still fails on MS-Windows. Solution: Set fileformat of buffer in the right place.
2020-02-16patch 8.2.0263: a few new Vim9 messages are not localizedv8.2.0263Bram Moolenaar
Problem: A few new Vim9 messages are not localized. Solution: Add the gettext wrapper. (Dominique Pelle, closes #5647)
2020-02-16patch 8.2.0262: fileformat test fails on MS-Windowsv8.2.0262Bram Moolenaar
Problem: Fileformat test fails on MS-Windows. Solution: Set fileformat of buffer.
2020-02-16patch 8.2.0261: some code not covered by testsv8.2.0261Bram Moolenaar
Problem: Some code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes #5645)
2020-02-15patch 8.2.0260: several lines of code are duplicatedv8.2.0260Bram Moolenaar
Problem: Several lines of code are duplicated. Solution: Move duplicated code to a function. (Yegappan Lakshmanan, closes #5330)
2020-02-15Update runtime files.Bram Moolenaar
2020-02-14patch 8.2.0259: terminal in popup test sometimes failsv8.2.0259Bram Moolenaar
Problem: Terminal in popup test sometimes fails. Solution: Clear the command line.
2020-02-14patch 8.2.0258: modifyOtherKeys cannot be temporarily disabledv8.2.0258Bram Moolenaar
Problem: ModifyOtherKeys cannot be temporarily disabled. Solution: Add echoraw() with an example for modifyOtherKeys.
2020-02-14patch 8.2.0257: cannot recognize a terminal in a popup windowv8.2.0257Bram Moolenaar
Problem: Cannot recognize a terminal in a popup window. Solution: Add the win_gettype() function.
2020-02-14patch 8.2.0256: time and timer related code is spread outv8.2.0256Bram Moolenaar
Problem: Time and timer related code is spread out. Solution: Move time and timer related code to a new file. (Yegappan Lakshmanan, closes #5604)
2020-02-13patch 8.2.0255: VMS: missing files in buildv8.2.0255Bram Moolenaar
Problem: VMS: missing files in build. Solution: Add the files. (Zoltan Arpadffy)
2020-02-13patch 8.2.0254: compiler warning for checking size_t to be negativev8.2.0254Bram Moolenaar
Problem: Compiler warning for checking size_t to be negative. Solution: Only check for zero. (Zoltan Arpadffy)
2020-02-13patch 8.2.0253: crash when using :disassamble without argumentv8.2.0253Bram Moolenaar
Problem: Crash when using :disassamble without argument. (Dhiraj Mishra) Solution: Check for missing argument. (Dominique Pelle, closes #5635, closes #5637)
2020-02-13patch 8.2.0252: Windows compiler warns for using size_tv8.2.0252Bram Moolenaar
Problem: Windows compiler warns for using size_t. Solution: Change to int. (Mike Williams)
2020-02-12patch 8.2.0251: a couple of function return types can be more specificv8.2.0251Bram Moolenaar
Problem: A couple of function return types can be more specific. Solution: Use a better return type. (Ken Takata, closes #5629)
2020-02-12patch 8.2.0250: test_clear_search_pat() is unusedv8.2.0250Bram Moolenaar
Problem: test_clear_search_pat() is unused. Solution: Remove the function. (Yegappan Lakshmanan, closes #5624)
2020-02-12patch 8.2.0249: MS-Windows: various warningsv8.2.0249Bram Moolenaar
Problem: MS-Windows: various warnings. Solution: Set the charset to utf-8. Add _WIN32_WINNT and _USING_V110_SDK71_. (Ken Takata, closes #5625)
2020-02-12patch 8.2.0248: MS-Windows: dealing with deprecation is too complicatedv8.2.0248Bram Moolenaar
Problem: MS-Windows: dealing with deprecation is too complicated. Solution: Use io.h directly. Move _CRT_SECURE_NO_DEPRECATE to the build file. Suppress C4091 warning by setting "_WIN32_WINNT". (Ken Takata, closes #5626)
2020-02-12patch 8.2.0247: misleading comment in NSIS installer scriptv8.2.0247Bram Moolenaar
Problem: Misleading comment in NSIS installer script. Solution: Negate the meaning of the comment. (Ken Takata, closes #5627)
2020-02-11patch 8.2.0246: MSVC: deprecation warnings with Rubyv8.2.0246Bram Moolenaar
Problem: MSVC: deprecation warnings with Ruby. Solution: Move _CRT_SECURE_NO_DEPRECATE to build file. (Ken Takata, closes #5622)
2020-02-11patch 8.2.0245: MSVC: error message if the auto directory already existsv8.2.0245Bram Moolenaar
Problem: MSVC: error message if the auto directory already exists. Solution: Add "if not exists". (Ken Takata, closes #5620)
2020-02-11patch 8.2.0244: compiler warning in Lua interfacev8.2.0244Bram Moolenaar
Problem: Compiler warning in Lua interface. Solution: Add type cast. (Ken Takata, closes #5621)
2020-02-11patch 8.2.0243: insufficient code coverage for ex_docmd.c functionsv8.2.0243Bram Moolenaar
Problem: Insufficient code coverage for ex_docmd.c functions. Solution: Add more tests. (Yegappan Lakshmanan, closes #5618)
2020-02-11patch 8.2.0242: preview popup window test fails with long directory namev8.2.0242Bram Moolenaar
Problem: Preview popup window test fails with long directory name. (Jakub Kądziołka) Solution: Use "silent cd". (closes #5615)
2020-02-10patch 8.2.0241: crash when setting 'buftype' to "quickfix"v8.2.0241Bram Moolenaar
Problem: Crash when setting 'buftype' to "quickfix". Solution: Check that error list is not NULL. (closes #5613)
2020-02-10patch 8.2.0240: using memory after it was freedv8.2.0240Bram Moolenaar
Problem: Using memory after it was freed. (Dominique Pelle) Solution: Do not mix converion buffer with other buffer.
2020-02-10patch 8.2.0239: MS-Windows: 'env' job option does not override existing varsv8.2.0239Bram Moolenaar
Problem: MS-Windows: 'env' job option does not override existing environment variables. (Tim Pope) Solution: Set the environment variables later. (Yasuhiro Matsumoto, closes #5485, closes #5608)
2020-02-10patch 8.2.0238: MS-Windows: job_stop() results in exit value zerov8.2.0238Bram Moolenaar
Problem: MS-Windows: job_stop() results in exit value zero. Solution: Call TerminateJobObject() with -1 instead of 0. (Yasuhiro Matsumoto, closes #5150, closes #5614)