summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-08-13patch 8.2.1439: tiny and small builds have no test coveragev8.2.1439Bram Moolenaar
Problem: Tiny and small builds have no test coverage. Solution: Restore tests that do not depend on the +eval feature. (Ken Takata, closes #6696)
2020-08-12patch 8.2.1438: missing tests for interrupting script execution from debuggerv8.2.1438Bram Moolenaar
Problem: Missing tests for interrupting script execution from debugger. Solution: Add tests. (Yegappan Lakshmanan, closes #6697)
2020-08-12patch 8.2.1437: Vim9: 'statusline' is evaluated using Vim9 script syntaxv8.2.1437Bram Moolenaar
Problem: Vim9: 'statusline' is evaluated using Vim9 script syntax. Solution: Always use legacy script syntax.
2020-08-12patch 8.2.1436: function implementing :substitute has unexpected namev8.2.1436Bram Moolenaar
Problem: Function implementing :substitute has unexpected name. Solution: Rename from do_sub() to ex_substitute().
2020-08-12patch 8.2.1435: Vim9: always converting to string for ".." leads to mistakesv8.2.1435Bram Moolenaar
Problem: Vim9: always converting to string for ".." leads to mistakes. Solution: Only automatically convert simple types.
2020-08-12patch 8.2.1434: Vim9: crash when lambda uses outer function argumentv8.2.1434Bram Moolenaar
Problem: Vim9: crash when lambda uses outer function argument. Solution: Set the flag that the outer context is used.
2020-08-12patch 8.2.1433: Vim9: cannot mingle comments in multi-line lambdav8.2.1433Bram Moolenaar
Problem: Vim9: cannot mingle comments in multi-line lambda. Solution: Skip over NULL lines. (closes #6694)
2020-08-12patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar
Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
2020-08-12patch 8.2.1431: Vim9: no error for white space before comma in dictv8.2.1431Bram Moolenaar
Problem: Vim9: no error for white space before comma in dict. Solution: Check for extra white space. (closes #6674)
2020-08-12patch 8.2.1430: Vim9: error for missing comma instead of extra white spacev8.2.1430Bram Moolenaar
Problem: Vim9: error for missing comma instead of extra white space. Solution: Check if comma can be found after white space. (closes #6668) Also check for extra white space in literal dict. (closes #6670)
2020-08-12patch 8.2.1429: Vim9: no error for missing white after : in dictv8.2.1429Bram Moolenaar
Problem: Vim9: no error for missing white after : in dict. Solution: Check for white space. (closes #6671) Also check that there is no white before the :.
2020-08-12patch 8.2.1428: Vim9: :def function does not abort on nested function errorv8.2.1428Bram Moolenaar
Problem: Vim9: :def function does not abort on nested function error. Solution: Check whether an error message was given. (closes #6691)
2020-08-12patch 8.2.1427: Vim9: cannot use a range with marks in :def functionv8.2.1427Bram Moolenaar
Problem: Vim9: cannot use a range with marks in :def function. Solution: Parse range after colon. (closes #6686)
2020-08-12patch 8.2.1426: Vim9: cannot call autoload function in :def functionv8.2.1426Bram Moolenaar
Problem: Vim9: cannot call autoload function in :def function. Solution: Load the autoload script. (closes #6690)
2020-08-12patch 8.2.1425: Vim9: cannot use call() without :callv8.2.1425Bram Moolenaar
Problem: Vim9: cannot use call() without :call. Solution: Do not skip over "call(". (closes #6689)
2020-08-11patch 8.2.1424: Mac build failsv8.2.1424Bram Moolenaar
Problem: Mac build fails. Solution: Adjust configure to not fall back to Athena. Adjust some other files.
2020-08-11patch 8.2.1423: Vim9: find global function when looking for script-localv8.2.1423Bram Moolenaar
Problem: Vim9: find global function when looking for script-local. Solution: Don't strip prefix if name starts with "s:". (closes #6688)
2020-08-11patch 8.2.1422: the Mac GUI implementation is outdatedv8.2.1422Bram Moolenaar
Problem: The Mac GUI implementation is outdated and probably doesn't even work. Solution: Remove the Mac GUI code. The MacVim project provides the supported Vim GUI version.
2020-08-11patch 8.2.1421: Vim9: handling "+" and "-" before number differs from scriptv8.2.1421Bram Moolenaar
Problem: Vim9: handling "+" and "-" before number differs from Vim script. Solution: Use the same sequence of commands.
2020-08-11patch 8.2.1420: test 49 is old stylev8.2.1420Bram Moolenaar
Problem: Test 49 is old style. Solution: Convert remaining parts to new style. Remove obsolete items. (Yegappan Lakshmanan, closes #6683)
2020-08-10patch 8.2.1419: Vim9: not operator applied too earlyv8.2.1419Bram Moolenaar
Problem: Vim9: not operator applied too early. Solution: Implement the "numeric_only" argument. (closes #6680)
2020-08-10patch 8.2.1418: Vim9: invalid error for missing white spacev8.2.1418Bram Moolenaar
Problem: Vim9: invalid error for missing white space after function. Solution: Do not skip over white space. (closes #6679)
2020-08-10patch 8.2.1417: test 49 is old stylev8.2.1417Bram Moolenaar
Problem: Test 49 is old style. Solution: Convert more parts to new style test. (Yegappan Lakshmanan, closes #6682)
2020-08-10patch 8.2.1416: Vim9: boolean evaluation does not work as intendedv8.2.1416Bram Moolenaar
Problem: Vim9: boolean evaluation does not work as intended. Solution: Use tv2bool() in Vim9 script. (closes #6681)
2020-08-10patch 8.2.1415: closing a popup window with CTRL-C interrupts 'statusline'v8.2.1415Bram Moolenaar
Problem: Closing a popup window with CTRL-C interrupts 'statusline' if it calls a function. Solution: Reset got_int while redrawing. (closes #6675)
2020-08-10patch 8.2.1414: popupwindow missing last couple of linesv8.2.1414Bram Moolenaar
Problem: Popupwindow missing last couple of lines when cursor is in the first line. Solution: Compute the max height also when top aligned. (closes #6664)
2020-08-10patch 8.2.1413: previous tab page not usable from an Ex commandv8.2.1413Bram Moolenaar
Problem: Previous tab page not usable from an Ex command. Solution: Add the "#" argument for :tabnext et al. (Yegappan Lakshmanan, closes #6677)
2020-08-09patch 8.2.1412: Vim: not operator does not result in booleanv8.2.1412Bram Moolenaar
Problem: Vim: not operator does not result in boolean. Solution: Make type depend on operator. (issue 6678) Fix using "false" and "true" in Vim9 script.
2020-08-09patch 8.2.1411: when splitting a window localdir is copied but prevdir is notv8.2.1411Bram Moolenaar
Problem: when splitting a window localdir is copied but prevdir is not. Solution: Also copy prevdir. (closes #6667)
2020-08-09patch 8.2.1410: adding compiler plugin requires test changev8.2.1410Bram Moolenaar
Problem: Adding compiler plugin requires test change. Solution: Include compiler plugin and adjust test.
2020-08-09patch 8.2.1409: nmpmrc and php.ini filetypes not recognizedv8.2.1409Bram Moolenaar
Problem: Nmpmrc and php.ini filetypes not recognized. Solution: Add filetype detection. (Doug Kearns)
2020-08-09patch 8.2.1408: Vim9: type casting not supportedv8.2.1408Bram Moolenaar
Problem: Vim9: type casting not supported. Solution: Introduce type casting.
2020-08-09patch 8.2.1407: Vim9: type of list and dict only depends on first itemv8.2.1407Bram Moolenaar
Problem: Vim9: type of list and dict only depends on first item. Solution: Use all items to decide about the type.
2020-08-09patch 8.2.1406: popupwindow lacks scrollbar if no "maxheight" is usedv8.2.1406Bram Moolenaar
Problem: Popupwindow lacks scrollbar if no "maxheight" is used. Solution: Compute the max height depending on the position. (closes #6664)
2020-08-09patch 8.2.1405: Vim9: vim9compile.c is getting too bigv8.2.1405Bram Moolenaar
Problem: Vim9: vim9compile.c is getting too big. Solution: Split off type code to vim9type.c.
2020-08-09patch 8.2.1404: Vim9: script test fails in the GUIv8.2.1404Bram Moolenaar
Problem: Vim9: script test fails in the GUI. Solution: Use another key to map. Improve cleanup.
2020-08-09patch 8.2.1403: Vim9: Vim highlighting may fail in cmdline windowv8.2.1403Bram Moolenaar
Problem: Vim9: Vim highlighting fails in cmdline window if it uses Vim9 commands. Solution: Allow using :vim9script, :import and :export while in the cmdline window. (closes #6656)
2020-08-09patch 8.2.1402: s390x tests always failv8.2.1402Bram Moolenaar
Problem: s390x tests always fail. Solution: Temporarily disable s390x tests.
2020-08-09patch 8.2.1401: cannot jump to the last used tabpagev8.2.1401Bram Moolenaar
Problem: Cannot jump to the last used tabpage. Solution: Add g<Tab> and tabpagnr('#'). (Yegappan Lakshmanan, closes #6661, neovim #11626)
2020-08-09patch 8.2.1400: Vim9: test does not delete written filesv8.2.1400Bram Moolenaar
Problem: Vim9: test does not delete written files. Solution: Correct file names.
2020-08-08patch 8.2.1399: Vim9: may find imported item in wrong scriptv8.2.1399Bram Moolenaar
Problem: Vim9: may find imported item in wrong script. Solution: When looking up script-local function use the embedded script ID. (issue #6644)
2020-08-08patch 8.2.1398: autoload script sourced twice if sourced directlyv8.2.1398Bram Moolenaar
Problem: Autoload script sourced twice if sourced directly. Solution: Do not source an autoload script again. (issue #6644)
2020-08-08patch 8.2.1397: Vim9: return type of maparg() not adjusted for fourth argv8.2.1397Bram Moolenaar
Problem: Vim9: return type of maparg() not adjusted for fourth argument. Solution: Check if fourth argument is present. (closes #6645)
2020-08-08patch 8.2.1396: Vim9: no error for unexpectedly returning a valuev8.2.1396Bram Moolenaar
Problem: Vim9: no error for unexpectedly returning a value. Solution: Only set the return type for lambda's. Make using function type in a function reference work.
2020-08-08patch 8.2.1395: Vim9: no error if declaring a funcref with lower case letterv8.2.1395Bram Moolenaar
Problem: Vim9: no error if declaring a funcref with a lower case letter. Solution: Check the name after the type is inferred. Fix confusing name.
2020-08-08patch 8.2.1394: Vim9: compiling a function interferes with command modifiersv8.2.1394Bram Moolenaar
Problem: Vim9: compiling a function interferes with command modifiers. Solution: Save and restore command modifiers. (closes #6658)
2020-08-08patch 8.2.1393: insufficient testing for script debuggingv8.2.1393Bram Moolenaar
Problem: Insufficient testing for script debugging. Solution: Add more tests. (Ben Jackson)
2020-08-08patch 8.2.1392: Vim9: line number incorrect after skipping over comment linesv8.2.1392Bram Moolenaar
Problem: Vim9: error line number incorrect after skipping over comment lines. Solution: Insert empty lines for skipped lines.
2020-08-07patch 8.2.1391: Vim9: no error for shadowing a script functionv8.2.1391Bram Moolenaar
Problem: Vim9: no error for shadowing a script function. Solution: Check for already defined items. (closes #6652)
2020-08-07patch 8.2.1390: Vim9: type error after storing an option valuev8.2.1390Bram Moolenaar
Problem: Vim9: type error after storing an option value. Solution: Drop the type after a STOREOPT instruction. (closes #6632)