dot_files/vim-plugins/vim-powerline/autoload/Powerline/Functions/ft_man.vim

13 lines
251 B
VimL
Raw Normal View History

2017-07-09 00:26:06 +03:00
function! Powerline#Functions#ft_man#GetName() " {{{
let matches = matchlist(getline(1), '\v^([a-zA-Z_\.\-]+)\((\d+)\)')
if ! len(matches)
return 'n/a'
endif
let file = tolower(matches[1])
let num = matches[2]
return file
endfunction " }}}