]> granicus.if.org Git - vim/commitdiff
patch 9.0.0183: extra space after virtual text when 'linebreak' is set v9.0.0183
authorBram Moolenaar <Bram@vim.org>
Wed, 10 Aug 2022 12:12:03 +0000 (13:12 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 10 Aug 2022 12:12:03 +0000 (13:12 +0100)
Problem:    Extra space after virtual text when 'linebreak' is set.
Solution:   Do not count virtual text when getting linebreak value.
            (closes #10884)

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

index 3a9c7a3a4834608542faae1b24c6319eeeea1e85..0300f373a61764e8f409a04e905f257575bce2be 100644 (file)
@@ -2370,7 +2370,12 @@ win_line(
                    chartabsize_T cts;
 
                    init_chartabsize_arg(&cts, wp, lnum, wlv.vcol, line, p);
+# ifdef FEAT_PROP_POPUP
+                   // do not want virtual text counted here
+                   cts.cts_has_prop_with_text = FALSE;
+# endif
                    wlv.n_extra = win_lbr_chartabsize(&cts, NULL) - 1;
+                   clear_chartabsize_arg(&cts);
 
                    // We have just drawn the showbreak value, no need to add
                    // space for it again.
@@ -2398,7 +2403,7 @@ win_line(
 
                    wlv.c_extra = mb_off > 0 ? MB_FILLER_CHAR : ' ';
                    wlv.c_final = NUL;
-# if defined(FEAT_PROP_POPUP)
+# ifdef FEAT_PROP_POPUP
                    if (wlv.n_extra > 0 && c != TAB)
                        in_linebreak = TRUE;
 # endif
@@ -2412,10 +2417,8 @@ win_line(
                        if (!wp->w_p_list)
                            c = ' ';
                    }
-                   clear_chartabsize_arg(&cts);
                }
 #endif
-
                in_multispace = c == ' '
                    && ((ptr > line + 1 && ptr[-2] == ' ') || *ptr == ' ');
                if (!in_multispace)
diff --git a/src/testdir/dumps/Test_prop_with_linebreak_1.dump b/src/testdir/dumps/Test_prop_with_linebreak_1.dump
new file mode 100644 (file)
index 0000000..9cae5d6
--- /dev/null
@@ -0,0 +1,6 @@
+>o+0&#ffffff0|n|e|:+0#e000e06&| |v|i|r|t|u|a|l| |t|e|x|t| +0#0000000&|t|w|o|w|o|r|d| @24
+|~+0#4040ff13&| @48
+|~| @48
+|~| @48
+|~| @48
+| +0#0000000&@31|1|,|1| @10|A|l@1| 
diff --git a/src/testdir/dumps/Test_prop_with_linebreak_2.dump b/src/testdir/dumps/Test_prop_with_linebreak_2.dump
new file mode 100644 (file)
index 0000000..6614eb2
--- /dev/null
@@ -0,0 +1,6 @@
+|a+0&#ffffff0|s|d|f| |a|s|d|f| |a|s|d|f| |a|s|d|f| |a|s|d|f| |a>s|o|n|e|:+0#e000e06&| |v|i|r|t|u|a|l| |t|e|x|t| +0#0000000&@5
+|t|w|o|w|o|r|d| @42
+|~+0#4040ff13&| @48
+|~| @48
+|~| @48
+| +0#0000000&@31|1|,|2|7| @9|A|l@1| 
index 17a2af5d6f9c92847d07e5a329ea800849f086c3..dd3f760aaac0662ae21c73bd56bdc2dd181c2e3a 100644 (file)
@@ -1878,6 +1878,26 @@ func Test_prop_in_linebreak()
   call delete('XscriptPropLinebreak')
 endfunc
 
+func Test_prop_with_linebreak()
+  CheckRunVimInTerminal
+
+  let lines =<< trim END
+      vim9script
+      set linebreak
+      setline(1, 'one twoword')
+      prop_type_add('test', {highlight: 'Special'})
+      prop_add(1, 4, {text: ': virtual text', type: 'test', text_wrap: 'wrap'})
+  END
+  call writefile(lines, 'XscriptPropWithLinebreak')
+  let buf = RunVimInTerminal('-S XscriptPropWithLinebreak', #{rows: 6, cols: 50})
+  call VerifyScreenDump(buf, 'Test_prop_with_linebreak_1', {})
+  call term_sendkeys(buf, "iasdf asdf asdf asdf asdf as\<Esc>")
+  call VerifyScreenDump(buf, 'Test_prop_with_linebreak_2', {})
+
+  call StopVimInTerminal(buf)
+  call delete('XscriptPropWithLinebreak')
+endfunc
+
 func Test_prop_after_tab()
   CheckRunVimInTerminal
 
index 534187045237d6bd24e70900537709703a23f2c9..582cb3655abf312c82e38b3e34624f8493ec11a2 100644 (file)
@@ -735,6 +735,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    183,
 /**/
     182,
 /**/