Patch 8.1.1460
Problem:    Popup window border characters may be wrong.
Solution:   Reset the border characters for each popup.  Correct use of
            'ambiwidth'.
Files:      src/screen.c


*** ../vim-8.1.1459/src/screen.c        2019-06-03 22:21:23.630304492 +0200
--- src/screen.c        2019-06-03 22:50:48.970711776 +0200
***************
*** 1041,1047 ****
      int           total_height;
      int           popup_attr;
      int           border_attr[4];
!     int           border_char[8] = {'-', '|', '-', '|', '+', '+', '+', '+', };
      char_u  buf[MB_MAXBYTES];
      int           row;
      int           i;
--- 1041,1047 ----
      int           total_height;
      int           popup_attr;
      int           border_attr[4];
!     int           border_char[8];
      char_u  buf[MB_MAXBYTES];
      int           row;
      int           i;
***************
*** 1080,1086 ****
  
        // We can only use these line drawing characters when 'encoding' is
        // "utf-8" and 'ambiwidth' is "single".
!       if (enc_utf8 && p_ambw == 's')
        {
            border_char[0] = border_char[2] = 0x2550;
            border_char[1] = border_char[3] = 0x2551;
--- 1080,1086 ----
  
        // We can only use these line drawing characters when 'encoding' is
        // "utf-8" and 'ambiwidth' is "single".
!       if (enc_utf8 && *p_ambw == 's')
        {
            border_char[0] = border_char[2] = 0x2550;
            border_char[1] = border_char[3] = 0x2551;
***************
*** 1089,1094 ****
--- 1089,1101 ----
            border_char[6] = 0x255d;
            border_char[7] = 0x255a;
        }
+       else
+       {
+           border_char[0] = border_char[2] = '-';
+           border_char[1] = border_char[3] = '|';
+           for (i = 4; i < 8; ++i)
+               border_char[i] = '+';
+       }
        for (i = 0; i < 8; ++i)
            if (wp->w_border_char[i] != 0)
                border_char[i] = wp->w_border_char[i];
*** ../vim-8.1.1459/src/version.c       2019-06-03 22:21:23.630304492 +0200
--- src/version.c       2019-06-03 22:53:10.653795386 +0200
***************
*** 769,770 ****
--- 769,772 ----
  {   /* Add new patch number below this line */
+ /**/
+     1460,
  /**/

-- 
Where do you want to crash today?

 /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/201906032053.x53KrjPB026112%40masaka.moolenaar.net.
For more options, visit https://groups.google.com/d/optout.

Raspunde prin e-mail lui