2016-02-29 21:38:39 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-24 00:16:30 +00:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2017-08-22 21:21:19 +00:00
|
|
|
function! airline#extensions#po#shorten()
|
2016-09-28 20:01:07 +00:00
|
|
|
if exists("g:airline#extensions#po#displayed_limit")
|
|
|
|
let w:displayed_po_limit = g:airline#extensions#po#displayed_limit
|
|
|
|
if len(b:airline_po_stats) > w:displayed_po_limit - 1
|
|
|
|
let b:airline_po_stats = b:airline_po_stats[0:(w:displayed_po_limit - 2)].(&encoding==?'utf-8' ? '…' : '.'). ']'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2016-02-29 21:38:39 +00:00
|
|
|
function! airline#extensions#po#apply(...)
|
|
|
|
if &ft ==# 'po'
|
|
|
|
call airline#extensions#prepend_to_section('z', '%{airline#extensions#po#stats()}')
|
|
|
|
autocmd airline BufWritePost * unlet! b:airline_po_stats
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#po#stats()
|
|
|
|
if exists('b:airline_po_stats') && !empty(b:airline_po_stats)
|
|
|
|
return b:airline_po_stats
|
|
|
|
endif
|
|
|
|
|
2016-09-28 20:01:07 +00:00
|
|
|
let cmd = 'msgfmt --statistics -o /dev/null -- '
|
2017-08-23 16:10:59 +00:00
|
|
|
if g:airline#init#vim_async
|
2017-08-22 21:21:19 +00:00
|
|
|
call airline#async#get_msgfmt_stat(cmd, expand('%:p'))
|
2017-08-22 22:00:47 +00:00
|
|
|
elseif has("nvim")
|
|
|
|
call airline#async#nvim_get_msgfmt_stat(cmd, expand('%:p'))
|
2016-09-28 20:01:07 +00:00
|
|
|
else
|
|
|
|
let airline_po_stats = system(cmd. shellescape(expand('%:p')))
|
|
|
|
if v:shell_error
|
|
|
|
return ''
|
2016-02-29 21:38:39 +00:00
|
|
|
endif
|
2016-09-28 20:01:07 +00:00
|
|
|
try
|
|
|
|
let b:airline_po_stats = '['. split(airline_po_stats, '\n')[0]. ']'
|
2016-11-22 11:24:09 +00:00
|
|
|
let b:airline_po_stats = substitute(b:airline_po_stats, ' \(message\|translation\)s*\.*', '', 'g')
|
2016-09-28 20:01:07 +00:00
|
|
|
catch
|
|
|
|
let b:airline_po_stats = ''
|
|
|
|
endtry
|
2017-08-22 21:21:19 +00:00
|
|
|
call airline#extensions#po#shorten()
|
2016-02-29 21:38:39 +00:00
|
|
|
endif
|
2016-09-28 20:01:07 +00:00
|
|
|
return get(b:, 'airline_po_stats', '')
|
2016-02-29 21:38:39 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#po#init(ext)
|
|
|
|
call a:ext.add_statusline_func('airline#extensions#po#apply')
|
|
|
|
endfunction
|