summaryrefslogtreecommitdiff
path: root/src/version.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0773: switching to raw mode every time ":" is usedv8.2.0773Bram Moolenaar2020-05-161-0/+2
| | | | | | Problem: Switching to raw mode every time ":" is used. Solution: When executing a shell set cur_tmode to TMODE_UNKNOWN, so that the next time TMODE_RAW is used it is set, but not every time.
* patch 8.2.0772: Vim9: some variable initializations not testedv8.2.0772Bram Moolenaar2020-05-161-0/+2
| | | | | Problem: Vim9: some variable initializations not tested. Solution: Add a few more tests
* patch 8.2.0771: Vim9: cannot call a compiled closure from not compiled codev8.2.0771Bram Moolenaar2020-05-161-0/+2
| | | | | Problem: Vim9: cannot call a compiled closure from not compiled code. Solution: Pass funcexe to call_user_func().
* patch 8.2.0770: cannot map CTRL-B when using the GUIv8.2.0770Bram Moolenaar2020-05-161-0/+2
| | | | | Problem: Cannot map CTRL-B when using the GUI. Solution: Reset the CTRL modifier when used. (closes #6092)
* patch 8.2.0769: VimLeavePre not triggered when Vim is terminatedv8.2.0769Bram Moolenaar2020-05-161-0/+2
| | | | | Problem: VimLeavePre not triggered when Vim is terminated. Solution: Unblock autocommands.
* patch 8.2.0768: Vim9: memory leak in script testv8.2.0768Bram Moolenaar2020-05-161-0/+2
| | | | | Problem: Vim9: memory leak in script test. Solution: Clear typval before giving an error message.
* patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmdv8.2.0767Bram Moolenaar2020-05-161-0/+2
| | | | | Problem: ModifyOtherKeys active when using a shell command in autocmd. Solution: Output T_CTE when going to cooked mode. (closes 5617)
* patch 8.2.0766: display error when using 'number' and 'breakindent'v8.2.0766Bram Moolenaar2020-05-161-0/+2
| | | | | | Problem: Display error when using 'number' and 'breakindent'. Solution: Adjust extra spaces in the first row. (Ken Takata, closes #6089, closes #5986)
* patch 8.2.0765: In the GUI can't use all the modifiers.v8.2.0765Bram Moolenaar2020-05-161-0/+2
| | | | | | 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.
* patch 8.2.0764: Vim9: assigning to option not fully testedv8.2.0764Bram Moolenaar2020-05-151-0/+2
| | | | | Problem: Vim9: assigning to option not fully tested. Solution: Add more test cases. Allow using any type for assignment.
* patch 8.2.0763: GUI test fails without the terminal featurev8.2.0763Bram Moolenaar2020-05-151-0/+2
| | | | | | Problem: GUI test fails without the terminal feature. Solution: Check the terminal feature is supported. (Ken Takata, closes #6084)
* patch 8.2.0762: buffer is not considered modified after setting crypt keyv8.2.0762Bram Moolenaar2020-05-151-0/+2
| | | | | Problem: Buffer is not considered modified after setting crypt key. Solution: Set the modified flag. (Christian Brabandt, closes #6082)
* patch 8.2.0761: Vim9: instructions not testedv8.2.0761Bram Moolenaar2020-05-151-0/+2
| | | | | Problem: Vim9: instructions not tested Solution: Use a variable instead of a constant.
* patch 8.2.0760: Vim9: dict member errors not testedv8.2.0760Bram Moolenaar2020-05-151-0/+2
| | | | | Problem: Vim9: dict member errors not tested. Solution: Delete unreachable error. Add tests.
* patch 8.2.0759: Vim9: missing changes for performance improvementsv8.2.0759Bram Moolenaar2020-05-151-0/+2
| | | | | Problem: Vim9: missing changes for performance improvements Solution: Use GA_GROW(). Don't call breakcheck so often.
* patch 8.2.0758: Vim9: no test for STORELIST and STOREDICTv8.2.0758Bram Moolenaar2020-05-151-0/+2
| | | | | Problem: Vim9: no test for STORELIST and STOREDICT. Solution: Add a test. Make matches stricter.
* patch 8.2.0757: Vim9: no test for MEMBER instructionv8.2.0757Bram Moolenaar2020-05-151-0/+2
| | | | | Problem: Vim9: no test for MEMBER instruction. Solution: Add a test. Make matches stricter.
* patch 8.2.0756: MS-Windows: still a compiler warningv8.2.0756Bram Moolenaar2020-05-151-0/+2
| | | | | | Problem: MS-Windows: still a compiler warning. Solution: Move flag to another place in the Makefile. (Ken Takata, closes #6083)
* patch 8.2.0755: Vim9: No error when variable initializer is not a constantv8.2.0755Bram Moolenaar2020-05-151-0/+2
| | | | | | 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.
* patch 8.2.0754: Vim9: No test for forward declarationv8.2.0754Bram Moolenaar2020-05-141-0/+2
| | | | | Problem: Vim9: No test for forward declaration. Solution: Add a test.
* patch 8.2.0753: Vim9: expressions are evaluated in the discovery phasev8.2.0753Bram Moolenaar2020-05-141-0/+2
| | | | | | 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.
* patch 8.2.0752: terminal in popup window test is a bit flakyv8.2.0752Bram Moolenaar2020-05-131-0/+2
| | | | | Problem: Terminal in popup window test is a bit flaky. Solution: Wait for shell job status to be "run". Mark as flaky test.
* Update version.c for missing patch numberBram Moolenaar2020-05-131-0/+2
|
* patch 8.2.0750: netbeans test is a bit flakyv8.2.0750Bram Moolenaar2020-05-131-0/+2
| | | | | Problem: Netbeans test is a bit flaky. Solution: Allow for standard sign to be defined. Use WaitForAssert().
* patch 8.2.0749: TERM signal test fails on FreeBSDv8.2.0749Bram Moolenaar2020-05-131-0/+2
| | | | | | Problem: TERM signal test fails on FreeBSD. Solution: Do not check the messages, the may appear anywhere. (Dominique Pelle, closes #6075)
* patch 8.2.0748: cannot get a list of all popupsv8.2.0748Bram Moolenaar2020-05-131-0/+2
| | | | | Problem: Cannot get a list of all popups. Solution: Add popup_list(). Use it in the test runner.
* patch 8.2.0747: cannot forcefully close all popupsv8.2.0747Bram Moolenaar2020-05-131-0/+2
| | | | | | 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.
* patch 8.2.0746: popup_clear() hangs when a popup can't be closedv8.2.0746Bram Moolenaar2020-05-131-0/+2
| | | | | Problem: popup_clear() hangs when a popup can't be closed. Solution: Bail out when a popup can't be closed.
* patch 8.2.0745: crash on exit when not all popups are closedv8.2.0745Bram Moolenaar2020-05-121-0/+2
| | | | | | 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.
* patch 8.2.0744: the name vim is not capatilized in a messagev8.2.0744Bram Moolenaar2020-05-121-0/+2
| | | | | Problem: The name vim is not capatilized in a message. Solution: Use "Vim" instead of "vim".
* patch 8.2.0743: can move to another buffer from a terminal in popup windowv8.2.0743Bram Moolenaar2020-05-121-0/+2
| | | | | Problem: Can move to another buffer from a terminal in popup window. Solution: Do not allow "gf" or editing a file. (closes #6072)
* patch 8.2.0742: handling of a TERM signal not testedv8.2.0742Bram Moolenaar2020-05-121-0/+2
| | | | | Problem: Handling of a TERM signal not tested. Solution: Add a test for SIGTERM. (Dominique Pelle, closes #6055)
* patch 8.2.0741: Python tests fail because of changed messagev8.2.0741Bram Moolenaar2020-05-121-0/+2
| | | | | Problem: Python tests fail because of changed message. Solution: Adjust the expected messages (Dominique Pelle, closes #6066)
* patch 8.2.0740: minor message mistakesv8.2.0740Bram Moolenaar2020-05-111-0/+2
| | | | | Problem: Minor message mistakes. Solution: Change vim to Vim and other fixes.
* patch 8.2.0739: incomplete profiling when exiting because of a dealy signalv8.2.0739Bram Moolenaar2020-05-111-0/+2
| | | | | Problem: Incomplete profiling when exiting because of a dealy signal. Solution: Call __gcov_flush() if available.
* patch 8.2.0738: mouse handling in a terminal window not well testedv8.2.0738Bram Moolenaar2020-05-111-0/+2
| | | | | Problem: Mouse handling in a terminal window not well tested. Solution: Add tests. (Yegappan Lakshmanan, closes #6052)
* patch 8.2.0737: when shell doesn't support CTRL-Z Vim still handles itv8.2.0737Bram Moolenaar2020-05-111-0/+2
| | | | | | 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)
* patch 8.2.0736: some files not recognized as pamenvv8.2.0736Bram Moolenaar2020-05-111-0/+2
| | | | | Problem: Some files not recognized as pamenv. Solution: Add pam_inv.conf. (closes #6065)
* patch 8.2.0735: Vim9: using unitialized memoryv8.2.0735Bram Moolenaar2020-05-101-0/+2
| | | | | Problem: Vim9: using unitialized memory. Solution: Clear the arg_lvar field.
* patch 8.2.0734: Vim9: leaking memory when using :finishv8.2.0734Bram Moolenaar2020-05-101-0/+2
| | | | | Problem: Vim9: leaking memory when using :finish. Solution: Do not check for next line in third pass.
* patch 8.2.0733: Vim9: assigning to dict or list argument does not workv8.2.0733Bram Moolenaar2020-05-101-0/+2
| | | | | Problem: Vim9: assigning to dict or list argument does not work. Solution: Recognize an argument as assignment target.
* patch 8.2.0732: Vim9: storing value in dict messes up stackv8.2.0732Bram Moolenaar2020-05-101-0/+2
| | | | | Problem: Vim9: storing value in dict messes up stack. Solution: Correct item count of stack.
* patch 8.2.0731: Vim9: parsing declarations continues after :finishv8.2.0731Bram Moolenaar2020-05-101-0/+2
| | | | | Problem: Vim9: parsing declarations continues after :finish. Solution: Bail out when encountering :finish.
* patch 8.2.0730: Vim9: Assignment to dict member does not workv8.2.0730Bram Moolenaar2020-05-101-0/+2
| | | | | Problem: Vim9: Assignment to dict member does not work. Solution: Parse dict assignment. Implement getting dict member.
* patch 8.2.0729: Vim9: When reloading a script variables are not clearedv8.2.0729Bram Moolenaar2020-05-101-0/+2
| | | | | Problem: Vim9: When reloading a script variables are not cleared. Solution: When sourcing a script again clear all script-local variables.
* patch 8.2.0728: messages about a deadly signal are not left alignedv8.2.0728Bram Moolenaar2020-05-101-0/+2
| | | | | Problem: Messages about a deadly signal are not left aligned. Solution: Output a CR before the NL. (Dominique Pelle, #6055)
* patch 8.2.0727: MS-Windows: new gcc compiler does not support scanf formatv8.2.0727Bram Moolenaar2020-05-101-0/+2
| | | | | Problem: MS-Windows: new gcc compiler does not support scanf format. Solution: Use "%ll" instead of "%I". (Ken Takata)
* patch 8.2.0726: Vim9: leaking memory when calling not compiled :def functionv8.2.0726Bram Moolenaar2020-05-091-0/+2
| | | | | Problem: Vim9: leaking memory when calling not compiled :def function. Solution: Check if function is compiled earlier.
* patch 8.2.0725: Vim9: cannot call a function declared later in Vim9 scriptv8.2.0725Bram Moolenaar2020-05-091-0/+2
| | | | | Problem: Vim9: cannot call a function declared later in Vim9 script. Solution: Make two passes through the script file.
* patch 8.2.0724: Vim9: appending to buffer/window/tab variable not testedv8.2.0724Bram Moolenaar2020-05-091-0/+2
| | | | | Problem: Vim9: appending to buffer/window/tab variable not tested Solution: Add a test.