2020-06-28 04:56:57 +08:00
|
|
|
" MIT License. Copyright (c) 2013-2020 Bailey Ling et al.
|
|
|
|
" This extension is inspired by vim-anzu <https://github.com/osyo-manga/vim-anzu>.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
scriptencoding utf-8
|
|
|
|
|
2020-07-21 13:08:21 +08:00
|
|
|
if !exists('*searchcount')
|
|
|
|
finish
|
|
|
|
endif
|
2020-06-28 04:56:57 +08:00
|
|
|
|
|
|
|
function! airline#extensions#searchcount#init(ext) abort
|
|
|
|
call a:ext.add_statusline_func('airline#extensions#searchcount#apply')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#searchcount#apply(...) abort
|
2020-07-21 13:35:22 +08:00
|
|
|
call airline#extensions#append_to_section('y',
|
2020-06-28 04:56:57 +08:00
|
|
|
\ '%{v:hlsearch ? airline#extensions#searchcount#status() : ""}')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#searchcount#status() abort
|
2020-08-25 19:36:03 +08:00
|
|
|
try
|
|
|
|
let result = searchcount(#{recompute: 1, maxcount: -1})
|
|
|
|
if empty(result) || result.total ==# 0
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
if result.incomplete ==# 1 " timed out
|
|
|
|
return printf(' /%s [?/??]', @/)
|
|
|
|
elseif result.incomplete ==# 2 " max count exceeded
|
|
|
|
if result.total > result.maxcount &&
|
|
|
|
\ result.current > result.maxcount
|
|
|
|
return printf('%s[>%d/>%d]', @/,
|
|
|
|
\ result.current, result.total)
|
|
|
|
elseif result.total > result.maxcount
|
|
|
|
return printf('%s[%d/>%d]', @/,
|
|
|
|
\ result.current, result.total)
|
|
|
|
endif
|
2020-06-28 04:56:57 +08:00
|
|
|
endif
|
2020-08-25 19:36:03 +08:00
|
|
|
return printf('%s[%d/%d]', @/,
|
|
|
|
\ result.current, result.total)
|
|
|
|
catch
|
|
|
|
return ''
|
|
|
|
endtry
|
2020-06-28 04:56:57 +08:00
|
|
|
endfunction
|