patch 9.0.1304: "$" for 'list' option displayed in wrong position v9.0.1304
authorBram Moolenaar <Bram@vim.org>
Sun, 12 Feb 2023 14:42:15 +0000 (14:42 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 12 Feb 2023 14:42:15 +0000 (14:42 +0000)
Problem:    "$" for 'list' option displayed in wrong position when there are
            text properties.
Solution:   Adjust logic for order of displayed items. (closes #11959)

src/drawline.c
src/testdir/dumps/Test_prop_above_below_empty_2.dump [new file with mode: 0644]
src/testdir/test_textprop.vim
src/version.c

index 4328c06c53a1a96982bc4cc4864e13dd8ec1d349..72dff66c03f78e2eb58e8bee2b694475a1d447a3 100644 (file)
@@ -1945,7 +1945,6 @@ win_line(
                    --bcol;
 # endif
                int display_text_first = FALSE;
-               int active_before = text_props_active;
 
                // Add any text property that starts in this column.
                // With 'nowrap' and not in the first screen line only "below"
@@ -1962,21 +1961,6 @@ win_line(
                                                       & TP_FLAG_ALIGN_ABOVE)))
                              : bcol >= text_props[text_prop_next].tp_col - 1))
                {
-                   if (text_props[text_prop_next].tp_col == MAXCOL
-                            && *ptr == NUL
-                            && ((wp->w_p_list && lcs_eol_one > 0)
-                                || (ptr == line
-                                       && !did_line
-                                       && (text_props[text_prop_next].tp_flags
-                                                      & TP_FLAG_ALIGN_BELOW))))
-                   {
-                       // first display the '$' after the line or display an
-                       // empty line
-                       text_prop_follows = TRUE;
-                       if (text_props_active == active_before)
-                           display_text_first = TRUE;
-                       break;
-                   }
                    if (text_props[text_prop_next].tp_col == MAXCOL
                            || bcol <= text_props[text_prop_next].tp_col - 1
                                           + text_props[text_prop_next].tp_len)
@@ -2028,6 +2012,24 @@ win_line(
                                                | TP_FLAG_ALIGN_BELOW)) == 0
                                    && wlv.col >= wp->w_width))
                        {
+                           if (tp->tp_col == MAXCOL
+                                    && *ptr == NUL
+                                    && ((wp->w_p_list && lcs_eol_one > 0
+                                            && (tp->tp_flags
+                                                  & TP_FLAG_ALIGN_ABOVE) == 0)
+                                        || (ptr == line
+                                               && !did_line
+                                               && (tp->tp_flags
+                                                     & TP_FLAG_ALIGN_BELOW))))
+                           {
+                               // skip this prop, first display the '$' after
+                               // the line or display an empty line
+                               text_prop_follows = TRUE;
+                               if (used_tpi < 0)
+                                   display_text_first = TRUE;
+                               continue;
+                           }
+
                            if (pt->pt_hl_id > 0)
                                used_attr = syn_id2attr(pt->pt_hl_id);
                            text_prop_type = pt;
@@ -2038,6 +2040,7 @@ win_line(
                            text_prop_flags = pt->pt_flags;
                            text_prop_id = tp->tp_id;
                            used_tpi = tpi;
+                           display_text_first = FALSE;
                        }
                    }
                    if (text_prop_id < 0 && used_tpi >= 0
@@ -3104,6 +3107,7 @@ win_line(
                    }
                }
                else if (c == NUL
+                       && wlv.n_extra == 0
                        && (wp->w_p_list
                            || ((wlv.fromcol >= 0 || fromcol_prev >= 0)
                                && wlv.tocol > wlv.vcol
diff --git a/src/testdir/dumps/Test_prop_above_below_empty_2.dump b/src/testdir/dumps/Test_prop_above_below_empty_2.dump
new file mode 100644 (file)
index 0000000..3954a4b
--- /dev/null
@@ -0,0 +1,16 @@
+| +0#af5f00255#ffffff0@3|-+0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+| +0#af5f00255&@1|1| |1+0#0000000&@7|$+0#4040ff13&| +0#0000000&@46
+| +0#af5f00255&@3|++0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+| +0#af5f00255&@3|-+0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+| +0#af5f00255&@1|2| |$+0#4040ff13&| +0#0000000&@54
+| +0#af5f00255&@3|++0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+| +0#af5f00255&@3|-+0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+| +0#af5f00255&@1|3| |3+0#0000000&@8|$+0#4040ff13&| +0#0000000&@45
+| +0#af5f00255&@3|++0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+| +0#af5f00255&@3|-+0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+| +0#af5f00255&@1|4| |$+0#4040ff13&| +0#0000000&@54
+| +0#af5f00255&@3|++0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+| +0#af5f00255&@3|-+0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+| +0#af5f00255&@1|5| >5+0#0000000&@10|$+0#4040ff13&| +0#0000000&@43
+| +0#af5f00255&@3|++0#0000001#ffff4012@2| +0#0000000#ffffff0@52
+|:|s|e|t| |l|i|s|t| @32|5|,|1|-|5|7| @7|A|l@1| 
index b628c8215d848de93d0cc8cab9490a3a48739cc2..f3d53f7f09e56096c31275760eccb97aebdfa33a 100644 (file)
@@ -2798,6 +2798,9 @@ func Test_prop_with_text_above_below_empty()
   let buf = RunVimInTerminal('-S XscriptPropAboveBelowEmpty', #{rows: 16, cols: 60})
   call VerifyScreenDump(buf, 'Test_prop_above_below_empty_1', {})
 
+  call term_sendkeys(buf, ":set list\<CR>")
+  call VerifyScreenDump(buf, 'Test_prop_above_below_empty_2', {})
+
   call StopVimInTerminal(buf)
 endfunc
 
index 470940a57c01756383f9c5913341aec2d86ceefa..26e8ab57c5aea8b10f67506b6d08bec4c42280d3 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1304,
 /**/
     1303,
 /**/