1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
function! tabs_grep#TabsGrep(search)
redir => tabs_output
silent tabs
redir END
let tabs = split(tabs_output, '\n')
call filter(tabs, function('s:MatchString', [a:search]))
let tabs = s:FilterTabPageElements(tabs)
call s:EchoTabs(tabs)
endfunction
function! s:MatchString(search, index, value)
return match(a:value, a:search) != -1 ||
\ s:IsTabPageLine(a:value)
endfunction
function! s:IsTabPageLine(line)
return match(a:line, '\vTab page \d+') != -1
endfunction
function! s:FilterTabPageElements(list)
let tab_page_indexes = []
" Get a list of the indexes of "Tab page X" elements.
for i in range(len(a:list))
if s:IsTabPageLine(a:list[i])
call add(tab_page_indexes, i)
endif
endfor
let tab_page_indexes_to_remove = []
" For indexes in the middle of the list, if `2` is just before `3`, it
" means that `2` didn't have any files under it (otherwise `3` would
" instead be `4` or higher).
for i in range(1, len(tab_page_indexes) - 1)
if tab_page_indexes[i - 1] == tab_page_indexes[i] - 1
call add(tab_page_indexes_to_remove, tab_page_indexes[i - 1])
endif
endfor
" For the last index in the list, if it's equal to the last possible
" index in `a:list`, it's a tab page without children. The last tab page
" index should never be at the end.
if tab_page_indexes[-1] == len(a:list) - 1
call add(tab_page_indexes_to_remove, tab_page_indexes[-1])
endif
" Remove empty "Tab page X" elements from the `:tabs` list. Reverse the
" list of indexes to delete from right to left, ensuring we always use
" valid indexes.
for i in reverse(tab_page_indexes_to_remove)
call remove(a:list, i)
endfor
return a:list
endfunction
function! s:EchoTabs(tab_list)
for line in a:tab_list
if s:IsTabPageLine(line)
echohl Title
echo line
echohl None
else
echo line
endif
endfor
endfunction
|