summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* patch 8.2.0627: Vim9: error message does not workv8.2.0627Bram Moolenaar2020-04-232-1/+3
| | | | | Problem: Vim9: error message does not work. (Yegappan Lakshmanan) Solution: Swap lines.
* patch 8.2.0626: Vim9: wrong syntax of function in Vim9 scriptv8.2.0626Bram Moolenaar2020-04-2310-48/+141
| | | | | | Problem: Vim9: wrong syntax of function in Vim9 script. Solution: Give error for missing space. Implement :echomsg and :echoerr. (closes #5670)
* patch 8.2.0625: Vim9: confusing error when calling unknown functionv8.2.0625Bram Moolenaar2020-04-234-18/+40
| | | | | Problem: Vim9: confusing error when calling unknown function. Solution: Give error while compiling.
* patch 8.2.0624: Vim9: no check for space before #commentv8.2.0624Bram Moolenaar2020-04-235-13/+94
| | | | | Problem: Vim9: no check for space before #comment. Solution: Add space checks. Fix :throw with double quoted string.
* patch 8.2.0623: typo in test commentv8.2.0623Bram Moolenaar2020-04-232-1/+3
| | | | | Problem: Typo in test comment. (Christ van Willegen) Solution: Avoid mixing up a data structure with a body part.
* patch 8.2.0622: Haiku: GUI does not compilev8.2.0622Bram Moolenaar2020-04-235-8/+16
| | | | | Problem: Haiku: GUI does not compile. Solution: Various fixes. (Emir Sari, closes #5961)
* patch 8.2.0621: after running tests asan files may remainv8.2.0621Bram Moolenaar2020-04-233-1/+5
| | | | | Problem: After running tests asan files may remain. Solution: Clean up asan files with "make testclean".
* patch 8.2.0620: error in menu translationsv8.2.0620Bram Moolenaar2020-04-231-0/+2
| | | | | Problem: Error in menu translations. Solution: Insert a backslash before a space.
* patch 8.2.0619: null dict is not handled like an empty dictv8.2.0619Bram Moolenaar2020-04-2312-27/+128
| | | | | Problem: Null dict is not handled like an empty dict. Solution: Fix the code and add tests. (Yegappan Lakshmanan, closes #5968)
* patch 8.2.0618: echoing a null list results in no outputv8.2.0618Bram Moolenaar2020-04-223-1/+5
| | | | | Problem: Echoing a null list results in no output. (Yegappan Lakshmanan) Solution: Return "[]" instead of NULL in echo_string_core().
* patch 8.2.0617: new error check triggers in Swedish menuv8.2.0617Bram Moolenaar2020-04-221-0/+2
| | | | | Problem: New error check triggers in Swedish menu. Solution: Insert backslash. (Mats Tegner, closes #5966)
* patch 8.2.0616: build error when disabling the diff featurev8.2.0616Bram Moolenaar2020-04-212-2/+4
| | | | | Problem: Build error when disabling the diff feature. Solution: Move parenthesis outside of #ifdef. (Tom Ryder)
* patch 8.2.0615: regexp benchmark stest is old stylev8.2.0615Bram Moolenaar2020-04-2119-44/+179
| | | | | | Problem: Regexp benchmark stest is old style. Solution: Make it a new style test. Fix using a NULL list. Add more tests. (Yegappan Lakshmanan, closes #5963)
* patch 8.2.0614: get ml_get error when deleting a line in 'completefunc'v8.2.0614Bram Moolenaar2020-04-2111-40/+58
| | | | | | Problem: Get ml_get error when deleting a line in 'completefunc'. (Yegappan Lakshmanan) Solution: Lock the text while evaluating 'completefunc'.
* patch 8.2.0613: Vim9: no check for space before #commentv8.2.0613Bram Moolenaar2020-04-205-31/+209
| | | | | Problem: Vim9: no check for space before #comment. Solution: Add space checks.
* patch 8.2.0612: Vim9: no check for space before #commentv8.2.0612Bram Moolenaar2020-04-209-19/+96
| | | | | Problem: Vim9: no check for space before #comment. Solution: Add space checks.
* patch 8.2.0611: Vim9: no check for space before #commentv8.2.0611Bram Moolenaar2020-04-205-4/+69
| | | | | Problem: Vim9: no check for space before #comment. Solution: Add space checks.
* patch 8.2.0610: some tests are still old stylev8.2.0610Bram Moolenaar2020-04-2015-106/+178
| | | | | Problem: Some tests are still old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #5957)
* patch 8.2.0609: configure does not detect moonjit correctlyv8.2.0609Bram Moolenaar2020-04-203-2/+4
| | | | | Problem: Configure does not detect moonjit correctly. Solution: Double the brackets. (Ozaki Kiichi)
* patch 8.2.0608: warning from clang when building message testv8.2.0608Bram Moolenaar2020-04-202-1/+3
| | | | | Problem: Warning from clang when building message test. Solution: Use a void pointer. (Dominique Pelle, closes #5958)
* patch 8.2.0607: gcc warns for using uninitialized variablev8.2.0607Bram Moolenaar2020-04-192-21/+24
| | | | | Problem: Gcc warns for using uninitialized variable. (John Marriott) Solution: Set name_end also for environment variables.
* patch 8.2.0606: several syntax HL errors not checkedv8.2.0606Bram Moolenaar2020-04-192-50/+47
| | | | | Problem: Several syntax HL errors not checked. Solution: Add tests. (Yegappan Lakshmanan, closes #5954)
* patch 8.2.0605: Vim9: cannot unlet an environment variablev8.2.0605Bram Moolenaar2020-04-196-5/+27
| | | | | Problem: Vim9: cannot unlet an environment variable. Solution: Implement unlet for $VAR.
* patch 8.2.0604: :startinsert in a terminal window used laterv8.2.0604Bram Moolenaar2020-04-193-0/+29
| | | | | Problem: :startinsert in a terminal window used later. Solution: Ignore :startinsert in a terminal window. (closes #5952)
* patch 8.2.0603: configure does not detect moonjitv8.2.0603Bram Moolenaar2020-04-193-2/+45
| | | | | Problem: Configure does not detect moonjit. Solution: Add check for moonjit. (Shlomi Fish, closes #5947)
* patch 8.2.0602: :unlet $VAR does not work properlyv8.2.0602Bram Moolenaar2020-04-194-20/+52
| | | | | Problem: :unlet $VAR does not work properly. Solution: Make ":lockvar $VAR" fail. Check the "skip" flag.
* patch 8.2.0601: Vim9: :unlet is not compiledv8.2.0601Bram Moolenaar2020-04-1910-35/+232
| | | | | Problem: Vim9: :unlet is not compiled. Solution: Implement :unlet instruction and check for errors.
* patch 8.2.0600: Vim9: cannot read or write w:, t: and b: variablesv8.2.0600Bram Moolenaar2020-04-197-18/+203
| | | | | | Problem: Vim9: cannot read or write w:, t: and b: variables. Solution: Implement load and store for w:, t: and b: variables. (closes #5950)
* patch 8.2.0599: Netbeans interface insufficiently testedv8.2.0599Bram Moolenaar2020-04-196-39/+771
| | | | | Problem: Netbeans interface insufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5921)
* patch 8.2.0598: test_eval_stuff fails in normal terminalv8.2.0598Bram Moolenaar2020-04-182-4/+3
| | | | | Problem: Test_eval_stuff fails in normal terminal. Solution: Close the new window.
* patch 8.2.0597: test_eval is old stylev8.2.0597Bram Moolenaar2020-04-184-38/+122
| | | | | Problem: Test_eval is old style. Solution: Change some tests to a new style test.
* patch 8.2.0596: crash in test49v8.2.0596Bram Moolenaar2020-04-183-1/+3
| | | | | Problem: Crash in test49. Solution: Check the right pointer.
* patch 8.2.0595: Vim9: not all commands using ends_excmd() testedv8.2.0595Bram Moolenaar2020-04-1810-15/+122
| | | | | | Problem: Vim9: not all commands using ends_excmd() tested. Solution: Find # comment after regular commands. Add more tests. Report error for where it was caused.
* patch 8.2.0594: MS-Windows: cannot build with WINVER set to 0x0501v8.2.0594Bram Moolenaar2020-04-187-9/+35
| | | | | Problem: MS-Windows: cannot build with WINVER set to 0x0501. Solution: Only use inet_ntop() when available. (Ozaki Kiichi, closes #5946)
* patch 8.2.0593: finding a user command is not optimalv8.2.0593Bram Moolenaar2020-04-183-8/+14
| | | | | Problem: Finding a user command is not optimal. Solution: Start further down in the list of commands.
* patch 8.2.0592: MS-Windows with VTP: cursor is not made invisiblev8.2.0592Bram Moolenaar2020-04-172-0/+6
| | | | | | Problem: MS-Windows with VTP: cursor is not made invisible. Solution: Output the code to make the cursor visible or invisible. (Nobuhiro Takasaki, closes #5941)
* patch 8.2.0591: MS-Windows: should always support IPv6v8.2.0591Bram Moolenaar2020-04-173-2/+4
| | | | | Problem: MS-Windows: should always support IPv6 Solution: Add build flag. (Ozaki Kiichi, closes #5944)
* patch 8.2.0590: no 'backspace' value allows ignoring the insertion pointv8.2.0590Bram Moolenaar2020-04-177-9/+64
| | | | | Problem: No 'backspace' value allows ignoring the insertion point. Solution: Add the "nostop" and 3 values. (Christian Brabandt, closes #5940)
* patch 8.2.0589: .bsd file type not recognizedv8.2.0589Bram Moolenaar2020-04-172-1/+3
| | | | | Problem: .bsd file type not recognized. Solution: Recognize .bsd as BSDL. (Daniel Kho, closes #5945)
* patch 8.2.0588: Putty does not use "sgr" 'ttymouse' by defaultv8.2.0588Bram Moolenaar2020-04-172-3/+14
| | | | | | Problem: Putty does not use "sgr" 'ttymouse' by default. Solution: Make "sgr" the default for Putty. (Christian Brabandt, closes #5942)
* patch 8.2.0587: compiler warning for unused variablev8.2.0587Bram Moolenaar2020-04-162-1/+3
| | | | | Problem: Compiler warning for unused variable. Solution: Add UNUSED.
* patch 8.2.0586: Vim9: # comment not sufficiently testedv8.2.0586Bram Moolenaar2020-04-163-1/+40
| | | | | Problem: Vim9: # comment not sufficiently tested Solution: Check for preceding white space.
* patch 8.2.0585: Vim9: # comment not recognized after :vim9scriptv8.2.0585Bram Moolenaar2020-04-166-15/+105
| | | | | | Problem: Vim9: # comment not recognized after :vim9script. Solution: Check script type. Make comment after ":echo" work. And in several other places.
* patch 8.2.0584: viminfo file uses obsolete function file_readable()v8.2.0584Bram Moolenaar2020-04-162-1/+3
| | | | | Problem: Viminfo file uses obsolete function file_readable(). Solution: Use filereadable(). (closes #5934)
* patch 8.2.0583: Vim9: # comment not recognized in :def functionv8.2.0583Bram Moolenaar2020-04-163-30/+51
| | | | | Problem: Vim9: # comment not recognized in :def function. Solution: Recognize and skip # comment.
* patch 8.2.0582: color ramp test does not show text colorsv8.2.0582Bram Moolenaar2020-04-152-10/+56
| | | | | Problem: Color ramp test does not show text colors. Solution: Add a row of 16 text colors and 16 bold text colors.
* patch 8.2.0581: Win32 console: the cursor position is always top-leftv8.2.0581Bram Moolenaar2020-04-152-13/+9
| | | | | Problem: Win32 console: the cursor position is always top-left. Solution: Revert the patch for restoring screen.
* patch 8.2.0580: window size wrong if 'ea' is off and 'splitright' is onv8.2.0580Bram Moolenaar2020-04-153-1/+35
| | | | | | Problem: Window size wrong if 'ea' is off and 'splitright' is on and splitting then closing a window. Solution: Put abandoned window space in the right place. (Mark Waggoner)
* patch 8.2.0579: Coverity warns for unused valuev8.2.0579Bram Moolenaar2020-04-142-3/+6
| | | | | Problem: Coverity warns for unused value. Solution: Change order and use "else if".
* patch 8.2.0578: heredoc for interfaces does not support "trim"v8.2.0578Bram Moolenaar2020-04-1416-1902/+2073
| | | | | | Problem: Heredoc for interfaces does not support "trim". Solution: Update the script heredoc support to be same as the :let command. (Yegappan Lakshmanan, closes #5916)