mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-24 16:05:15 +08:00
97e204f3b6
1) allow for custom formatting of the output of the wordcount formatter This allows for formatting numbers correctly e.g. 1,042 in English locale and 1.042 in German locale. 2) cache values, so that no on every cursor move the wordcount needs to be recalculated.
31 lines
1.2 KiB
VimL
31 lines
1.2 KiB
VimL
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
let s:filetypes = get(g:, 'airline#extensions#wordcount#filetypes', '\vhelp|markdown|rst|org|text')
|
|
let s:format = get(g:, 'airline#extensions#wordcount#format', '%d words')
|
|
let s:formatter = get(g:, 'airline#extensions#wordcount#formatter', 'default')
|
|
|
|
function! s:update()
|
|
if match(&ft, s:filetypes) > -1
|
|
if get(b:, 'airline_wordcount_cache', '') is# '' ||
|
|
\ b:airline_wordcount_cache isnot# get(b:, 'airline_wordcount', '') ||
|
|
\ get(b:, 'airline_change_tick', 0) != b:changedtick
|
|
" cache data
|
|
let b:airline_wordcount = airline#extensions#wordcount#formatters#{s:formatter}#format()
|
|
let b:airline_wordcount_cache = b:airline_wordcount
|
|
let b:airline_change_tick = b:changedtick
|
|
endif
|
|
endif
|
|
endfunction
|
|
|
|
function! airline#extensions#wordcount#apply(...)
|
|
if &ft =~ s:filetypes
|
|
call airline#extensions#prepend_to_section('z', '%{get(b:, "airline_wordcount", "")}')
|
|
endif
|
|
endfunction
|
|
|
|
function! airline#extensions#wordcount#init(ext)
|
|
call a:ext.add_statusline_func('airline#extensions#wordcount#apply')
|
|
autocmd BufReadPost,CursorMoved,CursorMovedI * call s:update()
|
|
endfunction
|