- 21 Aug, 2022 9 commits
-
-
Bram Moolenaar authored
Problem: "make install" still fails. (Wilhelm Payne) Solution: Also add the directory to installrtbase. (Dominique Pellé)
-
Bram Moolenaar authored
Problem: "make install" does not install shared syntax file. (James McCoy) Solution: Install and uninstall the shared syntax files. (closes #10956)
-
Bram Moolenaar authored
Problem: Crash when using ":mkspell" with an empty .dic file. Solution: Check for an empty word tree.
-
Bram Moolenaar authored
Problem: Build failure without the +wildmenu feature. Solution: Move parenthesis.
-
Bram Moolenaar authored
Problem: Shift-Tab shows matches on cmdline when 'wildmenu' is off. Solution: Only show matches when 'wildmode' contains "list". (closes #10951)
-
Evan Miller authored
Problem: Mac: cannot build if dispatch.h is not available. Solution: Add #ifdef. (Evan Miller, closes #10954)
-
zeertzjq authored
Problem: Popup menu not removed when 'wildmenu' reset while it is visible. Solution: Do not check p_wmnu, only pum_visible(). (closes #10953)
-
Bram Moolenaar authored
Problem: 'autoshelldir' does not work with chunked respose. Solution: Collect chunks before parsing OSC 7. (closes #10949)
-
Bram Moolenaar authored
Problem: Cannot make difference between the end of :normal and a character in its argument. Solution: Add the "typebuf_was_empty" flag. (closes #10950)
-
- 20 Aug, 2022 5 commits
-
-
Ben Jackson authored
Problem: Removing multiple text properties takes many calls. Solution: Pass a list to prop_remove(). (Ben Jackson, closes #10945)
-
Bram Moolenaar authored
Problem: Test with BufNewFile autocmd is flaky. Solution: Use another file name.
-
Bram Moolenaar authored
Problem: Expanding "**" may loop forever with directory links. Solution: Check for being interrupted. (closes #10946)
-
Bram Moolenaar authored
Problem: No error for comma missing in list in :def function. Solution: Check for missing comma. (closes #10943)
-
Bram Moolenaar authored
Problem: Vim9: error message for missing type is not clear. Solution: Mention the context. (issue #10944)
-
- 19 Aug, 2022 3 commits
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Crash when pattern looks below the last line. Solution: Consider invalid lines to be empty. (closes #10938)
-
Bram Moolenaar authored
Problem: Cannot read error message when abort() is called. Solution: Output a newline before calling abort().
-
- 18 Aug, 2022 2 commits
-
-
Bram Moolenaar authored
Problem: job_start() test may fail under valgrind. Solution: Wait until the job is running.
-
Bram Moolenaar authored
Problem: Using freed memory with multiple line breaks in expression. Solution: Free eval_tofree later.
-
- 17 Aug, 2022 2 commits
-
-
Bram Moolenaar authored
Problem: Using NULL pointer when skipping compiled code. Solution: Check for skipping.
-
zeertzjq authored
Problem: Typo in diffmode test. Solution: Fix the typo. (closes #10932)
-
- 16 Aug, 2022 5 commits
-
-
Bram Moolenaar authored
Problem: No good reason why text objects are only in larger builds. Solution: Graduate +textobjects.
-
Bram Moolenaar authored
Problem: Accessing freed memory if compiling nested function fails. Solution: Mess up the variable name so that it won't be found.
-
Bram Moolenaar authored
Problem: Invalid memory access with for loop over NULL string. Solution: Make sure mb_ptr2len() consistently returns zero for NUL.
-
Kota Kato authored
Problem: Cannot make a funcref with "s:func" in a def function in legacy script. Solution: Allow for using a lower case function name after "s:". (Kota Kato, closes #10926) -
Bram Moolenaar authored
Problem: Reading before the start of the line. Solution: When displaying "$" check the column is not negative.
-
- 15 Aug, 2022 5 commits
-
-
Bram Moolenaar authored
-
zeertzjq authored
Problem: 'shellslash' works differently when sourcing a script again. Solution: Use the name from the script item. (closes #10920)
-
Bram Moolenaar authored
Problem: Undo earlier test sometimes fails on MS-Windows. Solution: Use another file name.
-
Bram Moolenaar authored
Problem: Not passing APC_INDENT flag. Solution: Pass the flag where it's needed.
-
Bram Moolenaar authored
Problem: Splitting a line may duplicate virtual text. (Ben Jackson) Solution: Don't duplicate a text property with virtual text. Make auto-indenting work better. (closes #10919)
-
- 14 Aug, 2022 9 commits
-
-
Bram Moolenaar authored
Problem: Using freed memory with error in assert argument. Solution: Make a copy of the error.
-
Bram Moolenaar authored
Problem: Invalid memory access when compiling :unlet. Solution: Don't read past the end of the line.
-
Bram Moolenaar authored
Problem: Invalid memory access when compiling :lockvar. Solution: Don't read past the end of the line.
-
Bram Moolenaar authored
Problem: 'list' mode does not work properly with virtual text. Solution: Show the "$" at the right position. (closes #10913)
-
Bram Moolenaar authored
Problem: Build error with small features. Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: The override flag has no effect for virtual text. (Ben Jackson) Solution: Make the override flag work. (closes #10915)
-
zeertzjq authored
Problem: Stacktrace not shown when debugging. Solution: Set msg_scroll in msg_source(). (closes #10917)
-
Bram Moolenaar authored
Problem: Redraw flags are not named specifically. Solution: Prefix "UPD_" to the flags, for UPDate_screen().
-
Bram Moolenaar authored
Problem: Cursor in wrong position when inserting after virtual text. (Ben Jackson) Solution: Put the cursor after the virtual text, where the text will be inserted. (closes #10914)
-