Mercurial > vim
annotate pixmaps/tb_blank.xpm @ 34534:239e20a09999 v9.1.0169
patch 9.1.0169: current window number returned by tabpagewinnr may be outdated
Commit: https://github.com/vim/vim/commit/e101028a5c896480c61fef7ea16855255925709b
Author: Sean Dewar <6256228+seandewar@users.noreply.github.com>
Date: Tue Mar 12 20:42:25 2024 +0100
patch 9.1.0169: current window number returned by tabpagewinnr may be outdated
Problem: current window number returned by tabpagewinnr may be outdated
when called from win_execute for the original tabpage.
Solution: update the original tabpage's tp_curwin in switch_win; use
{un}use_tabpage instead. Don't do it in restore_win to ensure
tp_curwin of the temporarily visited tabpage is unchanged from
switch_win visiting it, as before. (Sean Dewar)
Maybe restore_win should only restore tp_curwin if
`curtab == switchwin->sw_curtab`, in case the user changed tabpages from within
win_execute, but not doing that is consistent with the old behaviour.
related: #14186
Signed-off-by: Sean Dewar <6256228+seandewar@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 12 Mar 2024 21:00:09 +0100 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_blank_xpm[] = { | |
3 /* width height ncolors cpp [x_hot y_hot] */ | |
4 "18 18 4 1 0 0", | |
5 /* colors */ | |
6 " s iconColor1 m black c #000000", | |
7 ". s none m none c none", | |
8 "X s topShadowColor m none c #DCDEE5", | |
9 "o s bottomShadowColor m black c #5D6069", | |
10 /* pixels */ | |
11 " .", | |
12 " XXXXXXXXXXXXXXX .", | |
13 " X.............. o", | |
14 " X.............. o", | |
15 " X.............. o", | |
16 " X.............. o", | |
17 " X.............. o", | |
18 " X.............. o", | |
19 " X.............. o", | |
20 " X.............. o", | |
21 " X.............. o", | |
22 " X.............. o", | |
23 " X.............. o", | |
24 " X.............. o", | |
25 " X.............. o", | |
26 " X.............. o", | |
27 " o", | |
28 "..oooooooooooooooo"}; |