diff src/charset.c @ 29605:0340a59e04ca v9.0.0143

patch 9.0.0143: cursor positioned after virtual text in empty line Commit: https://github.com/vim/vim/commit/afd2aa79eda3fe69f2e7c87d0b9b4bca874f386a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 5 13:07:23 2022 +0100 patch 9.0.0143: cursor positioned after virtual text in empty line Problem: Cursor positioned after virtual text in empty line. Solution: Keep cursor in the first column. (closes https://github.com/vim/vim/issues/10786)
author Bram Moolenaar <Bram@vim.org>
date Fri, 05 Aug 2022 14:15:04 +0200
parents 8f01d250793a
children 1a0aea1e23f4
line wrap: on
line diff
--- a/src/charset.c
+++ b/src/charset.c
@@ -1127,7 +1127,7 @@ win_lbr_chartabsize(
     size = win_chartabsize(wp, s, vcol);
 
 # ifdef FEAT_PROP_POPUP
-    if (cts->cts_has_prop_with_text)
+    if (cts->cts_has_prop_with_text && *line != NUL)
     {
 	int	    i;
 	int	    col = (int)(s - line);