summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-08-25patch 9.0.0269: getscriptinfo() does not include the versionv9.0.0269Yegappan Lakshmanan
Problem: getscriptinfo() does not include the version. Cannot select entries by script name. Solution: Add the "version" item and the "name" argument. (Yegappan Lakshmanan, closes #10962)
2022-08-25patch 9.0.0268: build error without the +eval featurev9.0.0268Bram Moolenaar
Problem: Build error without the +eval feature. Solution: Remove #ifdef.
2022-08-25patch 9.0.0267: Coverity workflow still uses Ubuntu 18.04v9.0.0267Philip H
Problem: Coverity workflow still uses Ubuntu 18.04. Solution: Use Ubuntu 20.04
2022-08-25patch 9.0.0266: compiler warning for unused argumentv9.0.0266Bram Moolenaar
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
2022-08-25patch 9.0.0265: no good reason why the "gf" command isn't in the tiny versionv9.0.0265Bram Moolenaar
Problem: No good reason why the "gf" command is not in the tiny version. Solution: Graduate the file_in_path feature.
2022-08-25patch 9.0.0264: CI still runs on Ubuntu 18.04v9.0.0264Philip H
Problem: CI still runs on Ubuntu 18.04. Solution: Run CI on Ubuntu 20.04. (closes #10582)
2022-08-25patch 9.0.0263: too many #ifdefsv9.0.0263Bram Moolenaar
Problem: Too many #ifdefs. Solution: Make some functions always available.
2022-08-25patch 9.0.0262: build failure without the +quickfix featurev9.0.0262Bram Moolenaar
Problem: Build failure without the +quickfix feature. Solution: Add #ifdef.
2022-08-25patch 9.0.0261: bufload() reads a file even if the name is not a file namev9.0.0261Bram Moolenaar
Problem: bufload() reads a file even if the name is not a file name. (Cyker Way) Solution: Do not read the file when the buffer name is not a file name. (closes #10975)
2022-08-24patch 9.0.0260: using freed memory when using 'quickfixtextfunc' recursivelyv9.0.0260Bram Moolenaar
Problem: Using freed memory when using 'quickfixtextfunc' recursively. Solution: Do not allow for recursion.
2022-08-24patch 9.0.0259: crash with mouse click when not initializedv9.0.0259Bram Moolenaar
Problem: Crash with mouse click when not initialized. Solution: Check TabPageIdxs[] is not NULL.
2022-08-24Update runtime filesBram Moolenaar
2022-08-24patch 9.0.0258: MS-Windows installer skips syntax/sharedv9.0.0258K.Takata
Problem: MS-Windows installer skips syntax/shared. Solution: Use "File /r" in the installer script. (Ken Takata, closes #10972)
2022-08-24patch 9.0.0257: "->" in ":scriptnames" output not tested yetv9.0.0257Bram Moolenaar
Problem: "->" in ":scriptnames" output not tested yet. Solution: Add a check.
2022-08-24patch 9.0.0256: compiler warning for uninitialized variablesv9.0.0256Bram Moolenaar
Problem: Compiler warning for uninitialized variables. Solution: Initilize the variables.
2022-08-24patch 9.0.0255: build failure without the eval featurev9.0.0255Bram Moolenaar
Problem: Build failure without the eval feature. Solution: Add #ifdef.
2022-08-24patch 9.0.0254: typo in function namev9.0.0254zeertzjq
Problem: Typo in function name. Solution: Rename the function. (closes #10971)
2022-08-24patch 9.0.0253: a symlink to an autoload script results in two entriesv9.0.0253Bram Moolenaar
Problem: A symlink to an autoload script results in two entries in the list of scripts, items expected in one are actually in the other. Solution: Have one script item refer to the actually sourced one. (closes #10960)
2022-08-24patch 9.0.0252: cursor in wrong place after virtual textv9.0.0252Bram Moolenaar
Problem: Cursor in wrong place after virtual text. Solution: Do not change the length of a virtual text property. (closes #10964)
2022-08-24patch 9.0.0251: test output shows up in gitv9.0.0251huang06
Problem: Test output shows up in git. Solution: Ignore the "failed" directory. (Yao-Ching Huang, closes #10969)
2022-08-23patch 9.0.0250: slightly inconsistent error messagesv9.0.0250Bram Moolenaar
Problem: Slightly inconsistent error messages. Solution: Make it "Using a Float". (closes #10959)
2022-08-23patch 9.0.0249: no test for what 9.0.0234 fixesv9.0.0249Bram Moolenaar
Problem: No test for what 9.0.0234 fixes. Solution: Add a test. (issue #10950)
2022-08-23patch 9.0.0248: duplicate code in finding a script in the execution stackv9.0.0248zeertzjq
Problem: Duplicate code in finding a script in the execution stack. Solution: Reduce duplicate code. (closes #10961)
2022-08-23patch 9.0.0247: cannot add padding to virtual text without highlightv9.0.0247Bram Moolenaar
Problem: Cannot add padding to virtual text without highlight. Solution: Add the "text_padding_left" argument. (issue #10906)
2022-08-22patch 9.0.0246: using freed memory when 'tagfunc' deletes the bufferv9.0.0246Bram Moolenaar
Problem: Using freed memory when 'tagfunc' deletes the buffer. Solution: Make a copy of the tag name.
2022-08-22patch 9.0.0245: mechanism to prevent recursive screen updating is incompletev9.0.0245Bram Moolenaar
Problem: Mechanism to prevent recursive screen updating is incomplete. Solution: Add "redraw_not_allowed" and set it in build_stl_str_hl(). (issue #10952)
2022-08-22patch 9.0.0244: cannot easily get the list of sourced scriptsv9.0.0244Yegappan Lakshmanan
Problem: Cannot easily get the list of sourced scripts. Solution: Add the getscriptinfo() function. (Yegappan Lakshmanan, closes #10957)
2022-08-22patch 9.0.0243: text properties "below" sort differently on MS-Windowsv9.0.0243Bram Moolenaar
Problem: Text properties "below" sort differently on MS-Windows. Solution: Use the ID as a tie breaker. (closes #10958)
2022-08-21patch 9.0.0242: "make install" still failsv9.0.0242Bram Moolenaar
Problem: "make install" still fails. (Wilhelm Payne) Solution: Also add the directory to installrtbase. (Dominique Pellé)
2022-08-21patch 9.0.0241: "make install" does not install shared syntax filev9.0.0241Bram Moolenaar
Problem: "make install" does not install shared syntax file. (James McCoy) Solution: Install and uninstall the shared syntax files. (closes #10956)
2022-08-21patch 9.0.0240: crash when using ":mkspell" with an empty .dic filev9.0.0240Bram Moolenaar
Problem: Crash when using ":mkspell" with an empty .dic file. Solution: Check for an empty word tree.
2022-08-21patch 9.0.0239: build failure without the +wildmenu featurev9.0.0239Bram Moolenaar
Problem: Build failure without the +wildmenu feature. Solution: Move parenthesis.
2022-08-21patch 9.0.0238: Shift-Tab shows matches on cmdline when 'wildmenu' is offv9.0.0238Bram Moolenaar
Problem: Shift-Tab shows matches on cmdline when 'wildmenu' is off. Solution: Only show matches when 'wildmode' contains "list". (closes #10951)
2022-08-21patch 9.0.0237: Mac: cannot build if dispatch.h is not availablev9.0.0237Evan Miller
Problem: Mac: cannot build if dispatch.h is not available. Solution: Add #ifdef. (Evan Miller, closes #10954)
2022-08-21patch 9.0.0236: popup menu not removed when 'wildmenu' reset while visiblev9.0.0236zeertzjq
Problem: Popup menu not removed when 'wildmenu' reset while it is visible. Solution: Do not check p_wmnu, only pum_visible(). (closes #10953)
2022-08-21patch 9.0.0235: 'autoshelldir' does not work with chunked resposev9.0.0235Bram Moolenaar
Problem: 'autoshelldir' does not work with chunked respose. Solution: Collect chunks before parsing OSC 7. (closes #10949)
2022-08-21patch 9.0.0234: cannot make difference between :normal end and argument charv9.0.0234Bram Moolenaar
Problem: Cannot make difference between the end of :normal and a character in its argument. Solution: Add the "typebuf_was_empty" flag. (closes #10950)
2022-08-20patch 9.0.0233: removing multiple text properties takes many callsv9.0.0233Ben Jackson
Problem: Removing multiple text properties takes many calls. Solution: Pass a list to prop_remove(). (Ben Jackson, closes #10945)
2022-08-20patch 9.0.0232: test with BufNewFile autocmd is flakyv9.0.0232Bram Moolenaar
Problem: Test with BufNewFile autocmd is flaky. Solution: Use another file name.
2022-08-20patch 9.0.0231: expanding "**" may loop forever with directory linksv9.0.0231Bram Moolenaar
Problem: Expanding "**" may loop forever with directory links. Solution: Check for being interrupted. (closes #10946)
2022-08-20patch 9.0.0230: no error for comma missing in list in :def functionv9.0.0230Bram Moolenaar
Problem: No error for comma missing in list in :def function. Solution: Check for missing comma. (closes #10943)
2022-08-20patch 9.0.0229: Vim9: error message for missing type is not clearv9.0.0229Bram Moolenaar
Problem: Vim9: error message for missing type is not clear. Solution: Mention the context. (issue #10944)
2022-08-19Update runtime filesBram Moolenaar
2022-08-19patch 9.0.0228: crash when pattern looks below the last linev9.0.0228Bram Moolenaar
Problem: Crash when pattern looks below the last line. Solution: Consider invalid lines to be empty. (closes #10938)
2022-08-19patch 9.0.0227: cannot read error message when abort() is calledv9.0.0227Bram Moolenaar
Problem: Cannot read error message when abort() is called. Solution: Output a newline before calling abort().
2022-08-18patch 9.0.0226: job_start() test may fail under valgrindv9.0.0226Bram Moolenaar
Problem: job_start() test may fail under valgrind. Solution: Wait until the job is running.
2022-08-18patch 9.0.0225: using freed memory with multiple line breaks in expressionv9.0.0225Bram Moolenaar
Problem: Using freed memory with multiple line breaks in expression. Solution: Free eval_tofree later.
2022-08-17patch 9.0.0224: Using NULL pointer when skipping compiled codev9.0.0224Bram Moolenaar
Problem: Using NULL pointer when skipping compiled code. Solution: Check for skipping.
2022-08-17patch 9.0.0223: typo in diffmode testv9.0.0223zeertzjq
Problem: Typo in diffmode test. Solution: Fix the typo. (closes #10932)
2022-08-16patch 9.0.0222: no good reason why text objects are only in larger buildsv9.0.0222Bram Moolenaar
Problem: No good reason why text objects are only in larger builds. Solution: Graduate +textobjects.