diff src/charset.c @ 30304:f1fe59179180 v9.0.0488

patch 9.0.0488: cursor wrong with virtual text "above" and 'showbreak' Commit: https://github.com/vim/vim/commit/4c7fd4d68f69b4e420a5448f144f4d57eda22f8c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 17 17:15:33 2022 +0100 patch 9.0.0488: cursor wrong with virtual text "above" and 'showbreak' Problem: Cursor in wrong position with virtual text "above" and 'showbreak'. Solution: Take the first character column into account. (closes #11149)
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Sep 2022 18:30:04 +0200
parents 45788c16b3a5
children 6fe513996997
line wrap: on
line diff
--- a/src/charset.c
+++ b/src/charset.c
@@ -1280,6 +1280,9 @@ win_lbr_chartabsize(
 
 	numberextra = numberwidth;
 	vcol += numberextra + mb_added;
+#ifdef FEAT_PROP_POPUP
+	vcol -= wp->w_virtcol_first_char;
+#endif
 	if (vcol >= (colnr_T)wp->w_width)
 	{
 	    vcol -= wp->w_width;