summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-03-20patch 8.2.2626: GTK3: error when starting up and -geometry is givenv8.2.2626Bram Moolenaar
Problem: GTK3: error when starting up and -geometry is given. (Dominique Pellé) Solution: Use another function to get the monitor if the window has not been created yet. (closes #7978)
2021-03-19patch 8.2.2625: rss files not recognizedv8.2.2625Bram Moolenaar
Problem: Rss files not recognized. Solution: Recognize .rss as XML. (Kivin Locke, closes #7987)
2021-03-19patch 8.2.2624: atom files not recognizedv8.2.2624Bram Moolenaar
Problem: Atom files not recognized. Solution: Recognize .atom as XML. (Kivin Locke, closes #7986)
2021-03-19patch 8.2.2623: some tests fail when run as rootv8.2.2623Bram Moolenaar
Problem: Some tests fail when run as root. Solution: Use CheckNotRoot.
2021-03-18patch 8.2.2622: GTK: error when starting up and -geometry is givenv8.2.2622Bram Moolenaar
Problem: GTK: error when starting up and -geometry is given. (Dominique Pellé) Solution: Use another function to get the monitor if the window has not been created yet. (closes #7978)
2021-03-18patch 8.2.2621: typval2type() cannot handle recursive structuresv8.2.2621Bram Moolenaar
Problem: typval2type() cannot handle recursive structures. Solution: Use copyID. (closes #7979)
2021-03-18patch 8.2.2620: Vim9: Using #{ for a dictionary gives strange errorsv8.2.2620Bram Moolenaar
Problem: Vim9: Using #{ for a dictionary gives strange errors. Solution: Give an error when using #{ for a comment after a command.
2021-03-17patch 8.2.2619: Vim9: no test for return type of lambdav8.2.2619Bram Moolenaar
Problem: Vim9: no test for return type of lambda. Solution: Add a test.
2021-03-17patch 8.2.2618: Vim9: cannot use a normal list name to store function refsv8.2.2618Bram Moolenaar
Problem: Vim9: cannot use a normal list name to store function refs. Solution: Allow a lower case name if it is indexed.
2021-03-17patch 8.2.2617: Vim9: script variable in block not found by functionv8.2.2617Bram Moolenaar
Problem: Vim9: script variable in a block scope not found by a nested function. Solution: Copy the block scope IDs before compiling the function.
2021-03-17patch 8.2.2616: Vim9: if 'cpo' is change in Vim9 script it may be restoredv8.2.2616Bram Moolenaar
Problem: Vim9: if 'cpo' is change in Vim9 script it may be restored. Solution: Apply the changes to 'cpo' to the restored value.
2021-03-17patch 8.2.2615: test is sourcing the wrong filev8.2.2615Bram Moolenaar
Problem: Test is sourcing the wrong file. Solution: Correct the file name.
2021-03-17patch 8.2.2614: Vim9: function is deleted while executingv8.2.2614Bram Moolenaar
Problem: Vim9: function is deleted while executing. Solution: increment the call count, when more than zero do not delete the function but mark it as dead. (closes #7977)
2021-03-17patch 8.2.2613: new test throws exceptionv8.2.2613Bram Moolenaar
Problem: New test throws exception. Solution: Adjust the function cleanup.
2021-03-17patch 8.2.2612: col('.') may get outdated column valuev8.2.2612Bram Moolenaar
Problem: col('.') may get outdated column value. Solution: Add a note to the help how to make this work and add a test for it. (closes #7971)
2021-03-17patch 8.2.2611: conditions for startup tests are not exactly rightv8.2.2611Bram Moolenaar
Problem: Conditions for startup tests are not exactly right. Solution: Check for type of GUI instead of MS-Windows. (Ozaki Kiichi, closes #7976)
2021-03-16patch 8.2.2610: mouse click test fails when using remote connectionv8.2.2610Bram Moolenaar
Problem: Mouse click test fails when using remote connection. Solution: Use a larger 'mousetime'. (Dominique Pellé, closes #7968)
2021-03-16patch 8.2.2609: test disabled on MS-Windows even though it should workv8.2.2609Bram Moolenaar
Problem: Test disabled on MS-Windows even though it should work. Solution: Restore the condition for skipping the test. (Ken Takata, closes #7970)
2021-03-15patch 8.2.2608: character input not fully testedv8.2.2608Bram Moolenaar
Problem: Character input not fully tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #7963)
2021-03-14patch 8.2.2607: strcharpart() cannot include composing charactersv8.2.2607Bram Moolenaar
Problem: strcharpart() cannot include composing characters. Solution: Add the {skipcc} argument.
2021-03-14patch 8.2.2606: strchars() defaults to counting composing charactersv8.2.2606Bram Moolenaar
Problem: strchars() defaults to counting composing characters. Solution: Add strcharlen() which ignores composing characters.
2021-03-14patch 8.2.2605: Vim9: string index and slice does not include composing charsv8.2.2605Bram Moolenaar
Problem: Vim9: string index and slice does not include composing chars. Solution: Include composing characters. (issue #6563)
2021-03-14patch 8.2.2604: GUI-specific command line arguments not testedv8.2.2604Bram Moolenaar
Problem: GUI-specific command line arguments not tested. Solution: Add tests for several arguments. (Dominique Pellé, closes #7962)
2021-03-14patch 8.2.2603: Vim9: no effect if user command is also a functionv8.2.2603Bram Moolenaar
Problem: Vim9: no effect if user command is also a function. Solution: Check for paren following. (closes #7960)
2021-03-14patch 8.2.2602: Vim9: continue doesn't work if :while is very first commandv8.2.2602Bram Moolenaar
Problem: Vim9: continue doesn't work if :while is very first command. (Yegappan Lakshmanan) Solution: Add one to the continue instruction index.
2021-03-13patch 8.2.2601: memory usage test often fails on FreeBSDv8.2.2601Bram Moolenaar
Problem: Memory usage test often fails on FreeBSD. Solution: Increase multiplier for upper limit.
2021-03-13patch 8.2.2600: Vim9: crash when putting an unknown type in a dictionaryv8.2.2600Bram Moolenaar
Problem: Vim9: crash when putting an unknown type in a dictionary. (Yegappan Lakshmanan) Solution: Handle a NULL type pointer.
2021-03-13patch 8.2.2599: build failurev8.2.2599Bram Moolenaar
Problem: Build failure. Solution: Add missing change.
2021-03-13patch 8.2.2598: Vim9: :open does not need to be supportedv8.2.2598Bram Moolenaar
Problem: Vim9: :open does not need to be supported. Solution: Do not support :open in Vim9 script.
2021-03-13patch 8.2.2597: Vim9: "import * as" does not work at script levelv8.2.2597Bram Moolenaar
Problem: Vim9: "import * as" does not work at script level. Solution: Implement using an imported namespace.
2021-03-13patch 8.2.2596: :doautocmd may confuse scripts listening to WinEnterv8.2.2596Bram Moolenaar
Problem: :doautocmd may confuse scripts listening to WinEnter. Solution: Do the current buffer last. (closes #7958)
2021-03-13patch 8.2.2595: setting 'winminheight' may cause 'lines' to changev8.2.2595Bram Moolenaar
Problem: Setting 'winminheight' may cause 'lines' to change. Solution: Also take minimal height of other tabpages into account. (#7899)
2021-03-13patch 8.2.2594: alternate buffer added to session file even when it's hiddenv8.2.2594Bram Moolenaar
Problem: Alternate buffer added to session file even when it's hidden. Solution: Check the 'buflisted' option. (closes #7951)
2021-03-13patch 8.2.2593: list of distributed files is incompletev8.2.2593Bram Moolenaar
Problem: List of distributed files is incomplete. Solution: Add a file and rename another.
2021-03-13Update runtime files.Bram Moolenaar
2021-03-13patch 8.2.2592: code coverage could be improvedv8.2.2592Bram Moolenaar
Problem: Code coverage could be improved. Solution: Add a few more tests. (Dominique Pellé, closes #7957)
2021-03-12patch 8.2.2591: Poke files are not recognizedv8.2.2591Bram Moolenaar
Problem: Poke files are not recognized. Solution: Add a filetype entry. (Matt Ihlenfield)
2021-03-11patch 8.2.2590: Vim9: default argument value may cause internal errorv8.2.2590Bram Moolenaar
Problem: Vim9: default argument value may cause internal error. Solution: Hide later function arguments when compiling the expression. (closes #7948)
2021-03-10patch 8.2.2589: recover test hangs in the GUIv8.2.2589Bram Moolenaar
Problem: Recover test hangs in the GUI. Solution: Add g:skipped_reason to skip a _nocatch_ test.
2021-03-10patch 8.2.2588: build failure with tiny featuresv8.2.2588Bram Moolenaar
Problem: Build failure with tiny features. Solution: Add #ifdef. Run recover test separately.
2021-03-10patch 8.2.2587: recover test fails on FreeBSDv8.2.2587Bram Moolenaar
Problem: Recover test fails on FreeBSD. Solution: Check for Linux.
2021-03-10patch 8.2.2586: process id may be invalidv8.2.2586Bram Moolenaar
Problem: Process id may be invalid. Solution: Use sysinfo.uptime to check for recent reboot. (suggested by Hugo van der Sanden, closes #7947)
2021-03-10patch 8.2.2585: Vim9: illegal memory accessv8.2.2585Bram Moolenaar
Problem: Vim9: illegal memory access. Solution: Check byte right after "null", not one more.
2021-03-10patch 8.2.2584: Vim9: type error for assigning "any" to a listv8.2.2584Bram Moolenaar
Problem: Vim9: type error for assigning the result of list concatenation to a list. Solution: Do not consider concatenation result in a constant. (closes #7942)
2021-03-10patch 8.2.2583: Vim9: cannot compare result of getenv() with nullv8.2.2583Bram Moolenaar
Problem: Vim9: cannot compare result of getenv() with null. Solution: Make the return type of getenv() "any". (closes #7943)
2021-03-10patch 8.2.2582: Vim9: screendump test fails on MS-Windowsv8.2.2582Bram Moolenaar
Problem: Vim9: screendump test fails on MS-Windows. Solution: Use :function instead of :def.
2021-03-10patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redrawv8.2.2581Bram Moolenaar
Problem: Vim9: sourcing Vim9 script triggers a redraw. Solution: Do not let setting/restoring 'cpoptions' cause a redraw. (closes #7920)
2021-03-08patch 8.2.2580: Vim9: checking vararg type may be wrongv8.2.2580Bram Moolenaar
Problem: Vim9: checking vararg type is wrong when function is auto-loaded. Solution: Use the member type. (closes #7933)
2021-03-08patch 8.2.2579: Vim9: crash in garbagecollect after for loopv8.2.2579Bram Moolenaar
Problem: Vim9: crash in garbagecollect after for loop. Solution: Do not set a reference in script item when the name was cleared. (closes #7935)
2021-03-08patch 8.2.2578: Lua cannot handle a passed in lambdav8.2.2578Bram Moolenaar
Problem: Lua cannot handle a passed in lambda. Solution: Handle VAR_PARTIAL. (Prabir Shrestha, closes #7937, closes #7936)