comparison src/popupwin.c @ 17563:cc2c4179427c v8.1.1779

patch 8.1.1779: not showing the popup window right border is confusing commit https://github.com/vim/vim/commit/8edf0e31323a4293524f51f2960f4f3064309526 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 30 21:19:26 2019 +0200 patch 8.1.1779: not showing the popup window right border is confusing Problem: Not showing the popup window right border is confusing. Solution: Also show the border when 'wrap' is off. (closes https://github.com/vim/vim/issues/4747)
author Bram Moolenaar <Bram@vim.org>
date Tue, 30 Jul 2019 21:30:05 +0200
parents 724370d05e79
children 696030820746
comparison
equal deleted inserted replaced
17562:53c3a926f290 17563:cc2c4179427c
1074 if (wp->w_width < 0) 1074 if (wp->w_width < 0)
1075 wp->w_width = 0; 1075 wp->w_width = 0;
1076 } 1076 }
1077 } 1077 }
1078 1078
1079 if (wp->w_p_wrap) 1079 if (wp->w_p_wrap || (!wp->w_popup_fixed
1080 && (wp->w_popup_pos == POPPOS_TOPLEFT
1081 || wp->w_popup_pos == POPPOS_BOTLEFT)))
1080 { 1082 {
1081 int want_col = 0; 1083 int want_col = 0;
1082 1084
1083 // try to show the right border and any scrollbar 1085 // try to show the right border and any scrollbar
1084 want_col = left_extra + wp->w_width + right_extra; 1086 want_col = left_extra + wp->w_width + right_extra;