]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.553 v7.3.553
authorBram Moolenaar <Bram@vim.org>
Wed, 13 Jun 2012 16:06:36 +0000 (18:06 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 13 Jun 2012 16:06:36 +0000 (18:06 +0200)
Problem:    With double-width characters and 'listchars' containing "precedes"
            the text is displayed one cell off.
Solution:   Check for double-width character being overwritten by the
            "precedes" character. (Yasuhiro Matsumoto)

src/screen.c
src/version.c

index 7bc77f296e25fe60f84e52af03199831b862550e..64d06ebe08fb63777e8869ac21fec938037ea8e9 100644 (file)
@@ -89,6 +89,9 @@
 
 #include "vim.h"
 
+#define MB_FILLER_CHAR '<'  /* character used when a double-width character
+                            * doesn't fit. */
+
 /*
  * The attributes that are actually active for writing to the screen.
  */
@@ -4016,7 +4019,7 @@ win_line(wp, lnum, startrow, endrow, nochange)
                if (n_skip > 0 && mb_l > 1 && n_extra == 0)
                {
                    n_extra = 1;
-                   c_extra = '<';
+                   c_extra = MB_FILLER_CHAR;
                    c = ' ';
                    if (area_attr == 0 && search_attr == 0)
                    {
@@ -4576,6 +4579,15 @@ win_line(wp, lnum, startrow, endrow, nochange)
            c = lcs_prec;
            lcs_prec_todo = NUL;
 #ifdef FEAT_MBYTE
+           if (has_mbyte && (*mb_char2cells)(mb_c) > 1)
+           {
+               /* Double-width character being overwritten by the "precedes"
+                * character, need to fill up half the character. */
+               c_extra = MB_FILLER_CHAR;
+               n_extra = 1;
+               n_attr = 2;
+               extra_attr = hl_attr(HLF_AT);
+           }
            mb_c = c;
            if (enc_utf8 && (*mb_char2len)(c) > 1)
            {
index 91226cb91bf393d63a95b9e61292421ac3b73aa8..fd997b9dfafa8adf7bafa4596f3cd39fa19e2672 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    553,
 /**/
     552,
 /**/