summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2020-02-26patch 8.2.0320: no Haiku supportv8.2.0320Bram Moolenaar
Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605)
2020-02-26patch 8.2.0319: file missing in distribution, comments outdatedv8.2.0319Bram Moolenaar
Problem: File missing in distribution, comments outdated. Solution: Correct path of README file. Update comments.
2020-02-26Update runtime files.Bram Moolenaar
2020-02-25patch 8.2.0318: Vim9: types not sufficiently testedv8.2.0318Bram Moolenaar
Problem: Vim9: types not sufficiently tested. Solution: Add tests with more types.
2020-02-25patch 8.2.0317: MSVC: _CRT_SECURE_NO_DEPRECATE not defined on DEBUG buildv8.2.0317Bram Moolenaar
Problem: MSVC: _CRT_SECURE_NO_DEPRECATE not defined on DEBUG build. Solution: Move where CFLAGS is updated. (Ken Takata, closes #5692)
2020-02-25patch 8.2.0316: ex_getln.c code has insufficient test coveragev8.2.0316Bram Moolenaar
Problem: ex_getln.c code has insufficient test coverage. Solution: Add more tests. Fix a problem. (Yegappan Lakshmanan, closes #5693)
2020-02-25patch 8.2.0315: build failure on HP-UX systemv8.2.0315Bram Moolenaar
Problem: Build failure on HP-UX system. Solution: Use LONG_LONG_MIN instead of LLONG_MIN. Add type casts for switch statement. (John Marriott)
2020-02-24patch 8.2.0314: short name not set for terminal bufferv8.2.0314Bram Moolenaar
Problem: Short name not set for terminal buffer. Solution: Set the short name. (closes #5687)
2020-02-23patch 8.2.0313: Vim9: insufficient script testsv8.2.0313Bram Moolenaar
Problem: Vim9: insufficient script tests. Solution: Add tests. Make import of alphanumeric name work.
2020-02-23patch 8.2.0312: Vim9: insufficient script testsv8.2.0312Bram Moolenaar
Problem: Vim9: insufficient script tests. Solution: Add more tests. Make "import * as Name" work.
2020-02-23patch 8.2.0311: Vim9: insufficient script testsv8.2.0311Bram Moolenaar
Problem: Vim9: insufficient script tests. Solution: Add tests. Free imports when re-using a script.
2020-02-23patch 8.2.0310: autocmd test fails on a slow systemv8.2.0310Bram Moolenaar
Problem: Autocmd test fails on a slow system. Solution: Adjust the expectations. (James McCoy, closes #5685)
2020-02-23patch 8.2.0309: window-local values have confusing namev8.2.0309Bram Moolenaar
Problem: Window-local values have confusing name. Solution: Rename w_p_bri* to w_briopt_*.
2020-02-23patch 8.2.0308: 'showbreak' does not work for a very long linev8.2.0308Bram Moolenaar
Problem: 'showbreak' does not work for a very long line. (John Little) Solution: Check whether 'briopt' contains "sbr". (Ken Takata, closes #5523, closes #5684)
2020-02-23patch 8.2.0307: Python 3 vim.eval not well testedv8.2.0307Bram Moolenaar
Problem: Python 3 vim.eval not well tested. Solution: Add a test. (Dominique Pelle, closes #5680)
2020-02-23patch 8.2.0306: Vim9: :substitute(pat(repl does not work in Vim9 scriptv8.2.0306Bram Moolenaar
Problem: Vim9: :substitute(pat(repl does not work in Vim9 script. Solution: Remember starting with a colon. (closes #5676)
2020-02-23patch 8.2.0305: relativenumber test fails on some systemsv8.2.0305Bram Moolenaar
Problem: Relativenumber test fails on some systems. (James McCoy) Solution: Clear the command line.
2020-02-23patch 8.2.0304: terminal test if failing on some systemsv8.2.0304Bram Moolenaar
Problem: Terminal test if failing on some systems. Solution: Wait for the job to finish. (James McCoy)
2020-02-22patch 8.2.0303: TermChanged test fails in the GUIv8.2.0303Bram Moolenaar
Problem: TermChanged test fails in the GUI. Solution: Skip the test when running the GUI.
2020-02-22patch 8.2.0302: setting 'term' may cause error in TermChanged autocommandv8.2.0302Bram Moolenaar
Problem: Setting 'term' may cause error in TermChanged autocommand. Solution: Use aucmd_prepbuf() to switch to the buffer where the autocommand is to be executed. (closes #5682)
2020-02-22patch 8.2.0301: insufficient testing for exception handlingv8.2.0301Bram Moolenaar
Problem: Insufficient testing for exception handling and the "attention" prompt. Solution: Add test cases. (Yegappan Lakshmanan, closes #5681)
2020-02-22patch 8.2.0300: Vim9: expression test fails without channel supportv8.2.0300Bram Moolenaar
Problem: Vim9: expression test fails without channel support. Solution: Add has('channel') check.
2020-02-22patch 8.2.0299: Vim9: ISN_STORE with argument not testedv8.2.0299Bram Moolenaar
Problem: Vim9: ISN_STORE with argument not tested. Some cases in tv2bool() not tested. Solution: Add tests. Add test_unknown() and test_void().
2020-02-22patch 8.2.0298: Vim9 script: cannot start command with a string constantv8.2.0298Bram Moolenaar
Problem: Vim9 script: cannot start command with a string constant. Solution: Recognize expression starting with '('.
2020-02-22patch 8.2.0297: compiler warnings for the Ruby interfacev8.2.0297Bram Moolenaar
Problem: Compiler warnings for the Ruby interface. Solution: Undefine a few macros, fix initialization. (Ozaki Kiichi, closes #5677)
2020-02-22patch 8.2.0296: mixing up "long long" and __int64 may cause problemsv8.2.0296Bram Moolenaar
Problem: Mixing up "long long" and __int64 may cause problems. (John Marriott) Solution: Pass varnumber_T to vim_snprintf(). Add v:numbersize.
2020-02-21patch 8.2.0295: highlighting for :s wrong when using different separatorv8.2.0295Bram Moolenaar
Problem: Highlighting for :s wrong when using different separator. Solution: Use separat argument for search direction and separator. (Rob Pilling, closes #5665)
2020-02-21patch 8.2.0294: cannot use Ex command that is also a function namev8.2.0294Bram Moolenaar
Problem: Cannot use Ex command that is also a function name. Solution: Recognize an Ex command by a colon prefix.
2020-02-21patch 8.2.0293: various Ex commands not sufficiently testedv8.2.0293Bram Moolenaar
Problem: Various Ex commands not sufficiently tested. Solution: Add more test cases. (Yegappan Lakshmanan, closes #5673)
2020-02-20patch 8.2.0292: Vim9: CHECKNR and CHECKTYPE instructions not testedv8.2.0292Bram Moolenaar
Problem: Vim9: CHECKNR and CHECKTYPE instructions not tested. Solution: Add tests.
2020-02-20patch 8.2.0291: Vim9: assigning [] to list<string> doesn't workv8.2.0291Bram Moolenaar
Problem: Vim9: assigning [] to list<string> doesn't work. Solution: Use void for empty list and dict. (Ken Takata, closes #5669)
2020-02-20patch 8.2.0290: running individual test differs from all testsv8.2.0290Bram Moolenaar
Problem: Running individual test differs from all tests. Solution: Pass on environment variables. (Yee Cheng Chin, closes #5672)
2020-02-20patch 8.2.0289: Vim9: :echo did not clear the rest of the linev8.2.0289Bram Moolenaar
Problem: Vim9: :echo did not clear the rest of the line. Solution: Call msg_clr_eos(). (Ken Takata, closes #5668)
2020-02-20patch 8.2.0288: Vim9: some float and blob operators not testedv8.2.0288Bram Moolenaar
Problem: Vim9: some float and blob operators not tested. Solution: Add float and blob tests. Fix addition.
2020-02-20patch 8.2.0287: Vim9: return in try block not tested; catch not testedv8.2.0287Bram Moolenaar
Problem: Vim9: return in try block not tested; catch with pattern not tested. Solution: Add tests. Make it work.
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)