It appears that the first key of any incremental search to a point far
enough down in the file (i.e. a page below the displayed area) will
cause it.  Typing any additional key brings the tabline back.

I fiddled around with TabLineSet.vim, but it appears that the bug is
in the code that decides whether to display either the default or
custom tabline.

On 6/1/06, Ilya <[EMAIL PROTECTED]> wrote:
Hello.

I've found bug in vim version

VIM - Vi IMproved 7.0 (2006 May 7, compiled May 25 2006 04:17:33)
MS-Windows 32 bit GUI version with OLE support
Included patches: 1-17

In case incremental search is on, tab line some times is not visible.

Steps to reproduce:

gvim -u NONE -U NONE
:e 1.txt
:set is
:tab sp
/s

after hitting 's' text is scrolled to a line containing 'six1' and
tabline is empty - cleared with background color.


1
2
3
4
5
6
7
8
9
one1
10
11
12
13
14
15
16
17
18
19
two1
20
21
22
23
24
25
26
27
28
29
three1
30
31
32
33
34
35
36
37
38
39
four1
40
41
42
43
44
45
46
47
48
49
five1
50
51
52
53
54
55
56
57
58
59
six1
60
61
62
63
64
65
66
67
68
69
seven1
70
71
72
73
74
75
76
77
78
79
eight1
80
81
82
83
84
85
86
87
88
89
nine1
90
91
92
93
94
95
96
97
98
99
ten1
1
2
3
4
5
6
7
8
9
one2
10
11
12
13
14
15
16
17
18
19
two2
20
21
22
23
24
25
26
27
28
29
three2
30
31
32
33
34
35
36
37
38
39
four2
40
41
42
43
44
45
46
47
48
49
five2
50
51
52
53
54
55
56
57
58
59
six2
60
61
62
63
64
65
66
67
68
69
seven2
70
71
72
73
74
75
76
77
78
79
eight2
80
81
82
83
84
85
86
87
88
89
nine2
90
91
92
93
94
95
96
97
98
99
ten2


Reply via email to