summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-05-16patch 8.2.0765: In the GUI can't use all the modifiers.v8.2.0765Bram Moolenaar
Problem: In the GUI can't use all the modifiers. (Andri Möll) Solution: Do not apply Alt/Meta early, do it later like with the terminal. Avoid the Motif test from crashing.
2020-05-15patch 8.2.0764: Vim9: assigning to option not fully testedv8.2.0764Bram Moolenaar
Problem: Vim9: assigning to option not fully tested. Solution: Add more test cases. Allow using any type for assignment.
2020-05-15patch 8.2.0763: GUI test fails without the terminal featurev8.2.0763Bram Moolenaar
Problem: GUI test fails without the terminal feature. Solution: Check the terminal feature is supported. (Ken Takata, closes #6084)
2020-05-15patch 8.2.0762: buffer is not considered modified after setting crypt keyv8.2.0762Bram Moolenaar
Problem: Buffer is not considered modified after setting crypt key. Solution: Set the modified flag. (Christian Brabandt, closes #6082)
2020-05-15patch 8.2.0761: Vim9: instructions not testedv8.2.0761Bram Moolenaar
Problem: Vim9: instructions not tested Solution: Use a variable instead of a constant.
2020-05-15patch 8.2.0760: Vim9: dict member errors not testedv8.2.0760Bram Moolenaar
Problem: Vim9: dict member errors not tested. Solution: Delete unreachable error. Add tests.
2020-05-15patch 8.2.0759: Vim9: missing changes for performance improvementsv8.2.0759Bram Moolenaar
Problem: Vim9: missing changes for performance improvements Solution: Use GA_GROW(). Don't call breakcheck so often.
2020-05-15patch 8.2.0758: Vim9: no test for STORELIST and STOREDICTv8.2.0758Bram Moolenaar
Problem: Vim9: no test for STORELIST and STOREDICT. Solution: Add a test. Make matches stricter.
2020-05-15patch 8.2.0757: Vim9: no test for MEMBER instructionv8.2.0757Bram Moolenaar
Problem: Vim9: no test for MEMBER instruction. Solution: Add a test. Make matches stricter.
2020-05-15patch 8.2.0756: MS-Windows: still a compiler warningv8.2.0756Bram Moolenaar
Problem: MS-Windows: still a compiler warning. Solution: Move flag to another place in the Makefile. (Ken Takata, closes #6083)
2020-05-15patch 8.2.0755: Vim9: No error when variable initializer is not a constantv8.2.0755Bram Moolenaar
Problem: Vim9: No error when variable initializer is not a constant. Solution: Return FAIL when trying to get a variable value. Do not execute a script when an error is deteted in the first or second phase.
2020-05-14patch 8.2.0754: Vim9: No test for forward declarationv8.2.0754Bram Moolenaar
Problem: Vim9: No test for forward declaration. Solution: Add a test.
2020-05-14patch 8.2.0753: Vim9: expressions are evaluated in the discovery phasev8.2.0753Bram Moolenaar
Problem: Vim9: expressions are evaluated in the discovery phase. Solution: Bail out if an expression is not a constant. Require a type for declared constants.
2020-05-13patch 8.2.0752: terminal in popup window test is a bit flakyv8.2.0752Bram Moolenaar
Problem: Terminal in popup window test is a bit flaky. Solution: Wait for shell job status to be "run". Mark as flaky test.
2020-05-13Update version.c for missing patch numberBram Moolenaar
2020-05-13patch 8.2.0751: Vim9: performance can be improvedv8.2.0751Bram Moolenaar
Problem: Vim9: performance can be improved. Solution: Don't call break. Inline check for list materialize. Make an inline version of ga_grow().
2020-05-13patch 8.2.0750: netbeans test is a bit flakyv8.2.0750Bram Moolenaar
Problem: Netbeans test is a bit flaky. Solution: Allow for standard sign to be defined. Use WaitForAssert().
2020-05-13patch 8.2.0749: TERM signal test fails on FreeBSDv8.2.0749Bram Moolenaar
Problem: TERM signal test fails on FreeBSD. Solution: Do not check the messages, the may appear anywhere. (Dominique Pelle, closes #6075)
2020-05-13patch 8.2.0748: cannot get a list of all popupsv8.2.0748Bram Moolenaar
Problem: Cannot get a list of all popups. Solution: Add popup_list(). Use it in the test runner.
2020-05-13patch 8.2.0747: cannot forcefully close all popupsv8.2.0747Bram Moolenaar
Problem: Cannot forcefully close all popups. Solution: Add the "force" argument to popup_clear(). Use it after running a test. Put back the check for a popup when editing a file.
2020-05-13patch 8.2.0746: popup_clear() hangs when a popup can't be closedv8.2.0746Bram Moolenaar
Problem: popup_clear() hangs when a popup can't be closed. Solution: Bail out when a popup can't be closed.
2020-05-12patch 8.2.0745: crash on exit when not all popups are closedv8.2.0745Bram Moolenaar
Problem: Crash on exit when not all popups are closed. Solution: Close popups when freeing all memory. Disable checking for popup when editing a file for now.
2020-05-12Update runtime filesBram Moolenaar
2020-05-12patch 8.2.0744: the name vim is not capatilized in a messagev8.2.0744Bram Moolenaar
Problem: The name vim is not capatilized in a message. Solution: Use "Vim" instead of "vim".
2020-05-12patch 8.2.0743: can move to another buffer from a terminal in popup windowv8.2.0743Bram Moolenaar
Problem: Can move to another buffer from a terminal in popup window. Solution: Do not allow "gf" or editing a file. (closes #6072)
2020-05-12patch 8.2.0742: handling of a TERM signal not testedv8.2.0742Bram Moolenaar
Problem: Handling of a TERM signal not tested. Solution: Add a test for SIGTERM. (Dominique Pelle, closes #6055)
2020-05-12patch 8.2.0741: Python tests fail because of changed messagev8.2.0741Bram Moolenaar
Problem: Python tests fail because of changed message. Solution: Adjust the expected messages (Dominique Pelle, closes #6066)
2020-05-11patch 8.2.0740: minor message mistakesv8.2.0740Bram Moolenaar
Problem: Minor message mistakes. Solution: Change vim to Vim and other fixes.
2020-05-11patch 8.2.0739: incomplete profiling when exiting because of a dealy signalv8.2.0739Bram Moolenaar
Problem: Incomplete profiling when exiting because of a dealy signal. Solution: Call __gcov_flush() if available.
2020-05-11patch 8.2.0738: mouse handling in a terminal window not well testedv8.2.0738Bram Moolenaar
Problem: Mouse handling in a terminal window not well tested. Solution: Add tests. (Yegappan Lakshmanan, closes #6052)
2020-05-11patch 8.2.0737: when shell doesn't support CTRL-Z Vim still handles itv8.2.0737Bram Moolenaar
Problem: When shell doesn't support CTRL-Z Vim still handles it. Solution: Ignore the STOP signal if it was ignored on startup. (Kurtis Rader, closes #5990, closes #6058)
2020-05-11patch 8.2.0736: some files not recognized as pamenvv8.2.0736Bram Moolenaar
Problem: Some files not recognized as pamenv. Solution: Add pam_inv.conf. (closes #6065)
2020-05-10patch 8.2.0735: Vim9: using unitialized memoryv8.2.0735Bram Moolenaar
Problem: Vim9: using unitialized memory. Solution: Clear the arg_lvar field.
2020-05-10patch 8.2.0734: Vim9: leaking memory when using :finishv8.2.0734Bram Moolenaar
Problem: Vim9: leaking memory when using :finish. Solution: Do not check for next line in third pass.
2020-05-10patch 8.2.0733: Vim9: assigning to dict or list argument does not workv8.2.0733Bram Moolenaar
Problem: Vim9: assigning to dict or list argument does not work. Solution: Recognize an argument as assignment target.
2020-05-10patch 8.2.0732: Vim9: storing value in dict messes up stackv8.2.0732Bram Moolenaar
Problem: Vim9: storing value in dict messes up stack. Solution: Correct item count of stack.
2020-05-10patch 8.2.0731: Vim9: parsing declarations continues after :finishv8.2.0731Bram Moolenaar
Problem: Vim9: parsing declarations continues after :finish. Solution: Bail out when encountering :finish.
2020-05-10patch 8.2.0730: Vim9: Assignment to dict member does not workv8.2.0730Bram Moolenaar
Problem: Vim9: Assignment to dict member does not work. Solution: Parse dict assignment. Implement getting dict member.
2020-05-10patch 8.2.0729: Vim9: When reloading a script variables are not clearedv8.2.0729Bram Moolenaar
Problem: Vim9: When reloading a script variables are not cleared. Solution: When sourcing a script again clear all script-local variables.
2020-05-10patch 8.2.0728: messages about a deadly signal are not left alignedv8.2.0728Bram Moolenaar
Problem: Messages about a deadly signal are not left aligned. Solution: Output a CR before the NL. (Dominique Pelle, #6055)
2020-05-10patch 8.2.0727: MS-Windows: new gcc compiler does not support scanf formatv8.2.0727Bram Moolenaar
Problem: MS-Windows: new gcc compiler does not support scanf format. Solution: Use "%ll" instead of "%I". (Ken Takata)
2020-05-09patch 8.2.0726: Vim9: leaking memory when calling not compiled :def functionv8.2.0726Bram Moolenaar
Problem: Vim9: leaking memory when calling not compiled :def function. Solution: Check if function is compiled earlier.
2020-05-09patch 8.2.0725: Vim9: cannot call a function declared later in Vim9 scriptv8.2.0725Bram Moolenaar
Problem: Vim9: cannot call a function declared later in Vim9 script. Solution: Make two passes through the script file.
2020-05-09patch 8.2.0724: Vim9: appending to buffer/window/tab variable not testedv8.2.0724Bram Moolenaar
Problem: Vim9: appending to buffer/window/tab variable not tested Solution: Add a test.
2020-05-09patch 8.2.0723: Vim9: nested constant expression not evaluated compile timev8.2.0723Bram Moolenaar
Problem: Vim9: nested constant expression not evaluated compile time. Solution: Use compile_expr1() for parenthesis.
2020-05-09patch 8.2.0722: Vim9: not handling constant expression for elseifv8.2.0722Bram Moolenaar
Problem: Vim9: not handling constant expression for elseif. Solution: Use postponed constants. Delete the code for evaluating a constant expression.
2020-05-09patch 8.2.0721: Vim9: leaking memory when skippingv8.2.0721Bram Moolenaar
Problem: Vim9: leaking memory when skipping. Solution: Disable skipping in generate_ppconst().
2020-05-09patch 8.2.0720: occasional exit when encountering an X errorv8.2.0720Bram Moolenaar
Problem: Occasional exit when encountering an X error. (Manfred Lotz) Solution: On an X error do not exit, do preserve files.
2020-05-09patch 8.2.0719: Vim9: more expressions can be evaluated at compile timev8.2.0719Bram Moolenaar
Problem: Vim9: more expressions can be evaluated at compile time Solution: Recognize has('name').
2020-05-09patch 8.2.0718: gcc warning for returning pointer to local variablev8.2.0718Bram Moolenaar
Problem: Gcc warning for returning pointer to local variable. (John Marriott) Solution: Return another pointer.