summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0049: command line completion not fully testedv8.2.0049Bram Moolenaar2019-12-278-1/+64
| | | | | | Problem: Command line completion not fully tested. Solution: Add more test cases. Make help sorting stable. (Dominique Pelle, closes #5402)
* patch 8.2.0048: another timers test is flaky on Travis for Macv8.2.0048Bram Moolenaar2019-12-272-1/+8
| | | | | Problem: Another timers test is flaky on Travis for Mac. Solution: Increase maximum expected time.
* patch 8.2.0047: cannot skip tests for specific MS-Windows platformv8.2.0047Bram Moolenaar2019-12-277-6/+39
| | | | | Problem: Cannot skip tests for specific MS-Windows platform. Solution: Add windowsversion().
* Update runtime files.Bram Moolenaar2019-12-2648-249/+234
|
* patch 8.2.0046: tests for spell suggestions are slowv8.2.0046Bram Moolenaar2019-12-262-45/+50
| | | | | | Problem: Tests for spell suggestions are slow. Solution: Use shorter words. Test with latin1 and utf-8 to cover more code. (Dominique Pelle, closes #5399)
* patch 8.2.0045: script test failsv8.2.0045Bram Moolenaar2019-12-252-10/+13
| | | | | Problem: Script test fails. Solution: For numbers "is" and "isnot" work like "==" and "!=".
* patch 8.2.0044: expression type is used inconsistentlyv8.2.0044Bram Moolenaar2019-12-255-73/+78
| | | | | | Problem: Expression type is used inconsistently. Solution: Add "ETYPE_IS" and "ETYPE_ISNOT" as separate enum values. Rename "TYPE_" to "ETYPE_" to avoid confusion.
* patch 8.2.0043: timers test is still flaky on Travis for Macv8.2.0043Bram Moolenaar2019-12-252-2/+4
| | | | | Problem: Timers test is still flaky on Travis for Mac. Solution: Increase maximum expected time.
* patch 8.2.0042: clearing funccal values twicev8.2.0042Bram Moolenaar2019-12-252-5/+2
| | | | | Problem: Clearing funccal values twice. Solution: Remove clearing individual fields.
* patch 8.2.0041: leaking memory when selecting spell suggestionv8.2.0041Bram Moolenaar2019-12-252-5/+6
| | | | | Problem: Leaking memory when selecting spell suggestion. Solution: Free previous value at the right time.
* patch 8.2.0040: timers test is still flaky on Travis for Macv8.2.0040Bram Moolenaar2019-12-253-1/+3
| | | | | Problem: Timers test is still flaky on Travis for Mac. Solution: Run separately instead of as part of test_alot.
* patch 8.2.0039: memory access error when "z=" has no suggestionsv8.2.0039Bram Moolenaar2019-12-253-4/+5
| | | | | Problem: Memory access error when "z=" has no suggestions. Solution: Check for negative index.
* patch 8.2.0038: spell suggestions insufficiently testedv8.2.0038Bram Moolenaar2019-12-252-0/+171
| | | | | Problem: Spell suggestions insufficiently tested. Solution: Add spell suggestion tests. (Dominique Pelle, closes #5398)
* patch 8.2.0037: missing renamed messagev8.2.0037Bram Moolenaar2019-12-242-1/+3
| | | | | Problem: Missing renamed message. Solution: Now really add the error number.
* patch 8.2.0036: not enough test coverage for match functionsv8.2.0036Bram Moolenaar2019-12-242-0/+33
| | | | | | Problem: Not enough test coverage for match functions. Solution: Add a few more test cases. (Dominique Pelle, closes #5394) Add error number.
* patch 8.2.0035: saving and restoring called_emsg is clumsyv8.2.0035Bram Moolenaar2019-12-2313-51/+32
| | | | | Problem: Saving and restoring called_emsg is clumsy. Solution: Count the number of error messages.
* patch 8.2.0034: missing check for out of memoryv8.2.0034Bram Moolenaar2019-12-232-1/+7
| | | | | | Problem: Missing check for out of memory. Solution: Check for NULL after vim_strsave(). (Dominique Pelle, closes #5393)
* patch 8.2.0033: crash when make_extmatch() runs out of memoryv8.2.0033Bram Moolenaar2019-12-223-0/+6
| | | | | Problem: Crash when make_extmatch() runs out of memory. Solution: Check for NULL. (Dominique Pelle, closs #5392)
* patch 8.2.0032: MS-Windows: test for blank job failsv8.2.0032Bram Moolenaar2019-12-223-3/+6
| | | | | Problem: MS-Windows: test for blank job fails Solution: Check before escaping.
* patch 8.2.0031: MS-Windows: test for empty job failsv8.2.0031Bram Moolenaar2019-12-223-4/+14
| | | | | Problem: MS-Windows: test for empty job fails Solution: Check for error message, make it also fail on Unix.
* patch 8.2.0030: "gF" does not work on output of "verbose command"v8.2.0030Bram Moolenaar2019-12-225-4/+24
| | | | | Problem: "gF" does not work on output of "verbose command". Solution: Recognize " line " and translations. (closes #5391)
* patch 8.2.0029: MS-Windows: crash with empty job commandv8.2.0029Bram Moolenaar2019-12-213-7/+13
| | | | | Problem: MS-Windows: crash with empty job command. Solution: Check for NULL result. (Yasuhiro Matsumoto, closes #5390)
* patch 8.2.0028: searchpairpos() is not testedv8.2.0028Bram Moolenaar2019-12-212-12/+97
| | | | | | Problem: Searchpairpos() is not tested. Solution: Add tests. Also improve searchpair() testing. (Dominique Pelle, closes #5388)
* patch 8.2.0027: still some /* */ commentsv8.2.0027Bram Moolenaar2019-12-215-76/+76
| | | | | Problem: Still some /* */ comments. Solution: Convert to // comments.
* patch 8.2.0026: still some /* */ commentsv8.2.0026Bram Moolenaar2019-12-216-1090/+1088
| | | | | Problem: Still some /* */ comments. Solution: Convert to // comments.
* patch 8.2.0025: repeated word in commentv8.2.0025Bram Moolenaar2019-12-202-1/+3
| | | | | Problem: Repeated word in comment. Solution: Remove one. (Rene Nyffenegger, closes #5384)
* Update runtime files.Bram Moolenaar2019-12-1912-49/+206
|
* patch 8.2.0024: filetype Rego not recognizedv8.2.0024Bram Moolenaar2019-12-193-0/+6
| | | | | Problem: Filetype Rego not recognized. Solution: Add *.rego. (Matt Dunford, closes #5376)
* patch 8.2.0023: command line editing not sufficiently testedv8.2.0023Bram Moolenaar2019-12-185-14/+91
| | | | | Problem: Command line editing not sufficiently tested. Solution: Add more tests. (Dominique Pelle, closes #5374)
* patch 8.2.0022: click in popup window doesn't close it in the GUIv8.2.0022Bram Moolenaar2019-12-182-1/+7
| | | | | | Problem: Click in popup window doesn't close it in the GUI. (Sergey Vlasov) Solution: When processing the selection also send a button release event. (closes #5367)
* patch 8.2.0021: timer test fails too often on Travis with MacOSv8.2.0021Bram Moolenaar2019-12-182-5/+23
| | | | | Problem: Timer test fails too often on Travis with MacOS. Solution: Be less strict with the time.
* patch 8.2.0020: mouse clicks in the command line not testedv8.2.0020Bram Moolenaar2019-12-182-42/+151
| | | | | Problem: Mouse clicks in the command line not tested. Solution: Add tests. (Dominique Pelle, closes #5366)
* patch 8.2.0019: cannot number of lines of another bufferv8.2.0019Bram Moolenaar2019-12-174-0/+15
| | | | | | Problem: Cannot number of lines of another buffer. Solution: Add "linecount" to getbufinfo(). (Yasuhiro Matsumoto, closes #5370)
* patch 8.2.0018: :join does not add white space where it shouldv8.2.0018Bram Moolenaar2019-12-173-1/+14
| | | | | Problem: :join does not add white space where it should. (Zdenek Dohnal) Solution: Handle joining multiple lines propely.
* patch 8.2.0017: OS/2 and MS-DOS are still mentionedv8.2.0017Bram Moolenaar2019-12-1721-132/+121
| | | | | | Problem: OS/2 and MS-DOS are still mentioned, even though support was removed long ago. Solution: Update documentation. (Yegappan Lakshmanan, closes #5368)
* patch 8.2.0016: test name used twice, option not restored properlyv8.2.0016Bram Moolenaar2019-12-172-2/+4
| | | | | Problem: Test name used twice, option not restored properly. Solution: Rename function, restore option with "&".
* patch 8.2.0015: not all modeline variants are testedv8.2.0015Bram Moolenaar2019-12-172-0/+111
| | | | | Problem: Not all modeline variants are tested. Solution: Add modeline tests. (Dominique Pelle, closes #5369)
* patch 8.2.0014: test69 and test95 are old stylev8.2.0014Bram Moolenaar2019-12-1610-622/+568
| | | | | Problem: Test69 and test95 are old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #5365)
* patch 8.2.0013: not using a typedef for condstackv8.2.0013Bram Moolenaar2019-12-167-53/+54
| | | | | Problem: Not using a typedef for condstack. Solution: Add a typedef.
* patch 8.2.0012: some undo functionality is not testedv8.2.0012Bram Moolenaar2019-12-152-1/+57
| | | | | Problem: Some undo functionality is not tested. Solution: Add a few more test cases. (Dominique Pelle, closes #5364)
* patch 8.2.0011: screen updating wrong when opeing preview windowv8.2.0011Bram Moolenaar2019-12-154-4/+46
| | | | | Problem: Screen updating wrong when opeing preview window. Solution: Redraw the window when the preview window opens.
* patch 8.2.0010: test64 is old stylev8.2.0010Bram Moolenaar2019-12-158-1765/+671
| | | | | Problem: Test64 is old style. Solution: Convert to new style test. (Yegappan Lakshmanan, closes #5363)
* patch 8.2.0009: VMS: terminal version doesn't buildv8.2.0009Bram Moolenaar2019-12-155-8/+12
| | | | | Problem: VMS: terminal version doesn't build. Solution: Move MIN definition. Adjust #ifdefs. (Zoltan Arpadffy)
* patch 8.2.0008: test72 is old stylev8.2.0008Bram Moolenaar2019-12-147-183/+189
| | | | | Problem: Test72 is old style. Solution: Convert to new style test. (Yegappan Lakshmanan, closes #5362)
* patch 8.2.0007: popup menu positioned wrong with folding in two tabsv8.2.0007Bram Moolenaar2019-12-146-1/+39
| | | | | Problem: Popup menu positioned wrong with folding in two tabs. Solution: Update the cursor line height. (closes #5353)
* patch 8.2.0006: test using long file name may failv8.2.0006Bram Moolenaar2019-12-142-1/+3
| | | | | Problem: Test using long file name may fail. (Vladimir Lomov) Solution: Limit the name length. (Christian Brabandt, closes #5358)
* patch 8.2.0005: duplication in version infov8.2.0005Bram Moolenaar2019-12-142-19/+29
| | | | | Problem: Duplication in version info. Solution: Use preprocessor string concatenation. (Ken Takata, closes #5357)
* patch 8.2.0004: get E685 and E931 if buffer reload is interruptedv8.2.0004Bram Moolenaar2019-12-1410-30/+67
| | | | | Problem: Get E685 and E931 if buffer reload is interrupted. Solution: Do not abort deleting a dummy buffer. (closes #5361)
* patch 8.2.0003: Build file dependencies are incompletev8.2.0003Bram Moolenaar2019-12-145-36/+52
| | | | | Problem: Build file dependencies are incomplete. Solution: Fix the dependencies. (Ken Takata, closes #5356)
* patch 8.2.0002: "dj" only deletes first line of closed foldv8.2.0002Bram Moolenaar2019-12-133-1/+29
| | | | | Problem: "dj" only deletes first line of closed fold. Solution: Adjust last line of operator for linewise motion. (closes #5354)