From 577b791c99b07471ec27e1f9c09e756a6f1da0cd Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 16 Apr 2013 01:22:46 -0500 Subject: Use the newer powerline. --- vim/autoload/Powerline/Functions/ft_man.vim | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 vim/autoload/Powerline/Functions/ft_man.vim (limited to 'vim/autoload/Powerline/Functions/ft_man.vim') diff --git a/vim/autoload/Powerline/Functions/ft_man.vim b/vim/autoload/Powerline/Functions/ft_man.vim deleted file mode 100644 index 29135e4..0000000 --- a/vim/autoload/Powerline/Functions/ft_man.vim +++ /dev/null @@ -1,12 +0,0 @@ -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 " }}} -- cgit