commit efacb107092602d4458623811a331c821ae9d49e
parent b95848a8f11d5e8096555efcf69d2c5b4536c997
Author: Jan Edmund Lazo <jan.lazo@mail.utoronto.ca>
Date: Sun, 21 Dec 2025 23:36:10 -0500
vim-patch:9.0.0154: text properties wrong after splitting a line
Problem: Text properties wrong after splitting a line.
Solution: Check for text properties after the line. (closes vim/vim#10857)
https://github.com/vim/vim/commit/7d0f7e9524975ebcc3c7d98b5507de1b7df74370
textprop is N/A.
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/nvim/ops.c b/src/nvim/ops.c
@@ -1865,7 +1865,7 @@ char *skip_comment(char *line, bool process, bool include_space, bool *is_commen
return line;
}
-/// @param count number of lines (minimal 2) to join at cursor position.
+/// @param count number of lines (minimal 2) to join at the cursor position.
/// @param save_undo when true, save lines for undo first.
/// @param use_formatoptions set to false when e.g. processing backspace and comment
/// leaders should not be removed.