- 20 Aug, 2022 1 commit
-
-
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 10 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) -
Yegappan Lakshmanan authored
Problem: indexof() may leak memory. Solution: Free allocated values. (Yegappan Lakshmanan, closes #10916)
-
- 13 Aug, 2022 8 commits
-
-
Bram Moolenaar authored
Problem: Confusing variable name. Solution: Use "prim_aep" instead of "spell_aep".
-
Yegappan Lakshmanan authored
Problem: Code and help for indexof() is not ideal. Solution: Refactor the code, improve the help. (Yegappan Lakshmanan, closes #10908) -
Bram Moolenaar authored
Problem: CursorLine highlight overrules virtual text highlight. Solution: Let extra attribute overrule line attribute. (closes #10909)
-
Bram Moolenaar authored
Problem: cursor in a wrong positoin if 'wrap' is off and using two right aligned text props in one line. Solution: Count an extra line for a right aligned text property after a below or right aligned text property. (issue #10909) -
Bram Moolenaar authored
Problem: Cursor position wrong with two right-aligned virtual texts. Solution: Add the padding for right-alignment. (issue #10906)
-
Bram Moolenaar authored
Problem: ml_get error when switching buffer in Visual mode. Solution: End Visual mode when switching buffer. (closes #10902)
-
Emilia Zapata authored
Problem: Astro files are not detected. Solution: Add a pattern to match Astro files. (Emilia Zapata, closes #10904)
-
Yegappan Lakshmanan authored
Problem: Finding value in list may require a for loop. Solution: Add indexof(). (Yegappan Lakshmanan, closes #10903)
-
- 12 Aug, 2022 2 commits
-
-
Bram Moolenaar authored
Problem: Metafun files are not recogized. Solution: Add filetype detection patterns.
-
Bram Moolenaar authored
Problem: Cursor displayed in wrong position after removing text prop. (Ben Jackson) Solution: Invalidate the cursor position. (closes #10898)
-
- 11 Aug, 2022 2 commits
-
-
Bram Moolenaar authored
Problem: Search and match highlgith interfere with virtual text highlight. (Ben Jackson) Solution: Check for match highlight after text properties. Reset and restore search highlight when showing virtual text. (closes #10892) -
Bram Moolenaar authored
Problem: Possible invalid memory access when 'cmdheight' is zero. (Martin Tournoij) Solution: Avoid going over the end of w_lines[] when w_height is Rows. (closes #10882)
-