summaryrefslogtreecommitdiffstats
path: root/vim/ftplugin/perl.vim
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-07-16 01:59:36 -0500
committerJesse Luehrs <doy@tozt.net>2012-07-16 02:45:06 -0500
commitf134f7a36ad50247e2b9beab749a7b7a69fe9e0b (patch)
tree1897b0a826014460a0e703a4605d51e55a561774 /vim/ftplugin/perl.vim
parent165332e2969df189adb52b066b51786009388cc9 (diff)
downloadconf-f134f7a36ad50247e2b9beab749a7b7a69fe9e0b.tar.gz
conf-f134f7a36ad50247e2b9beab749a7b7a69fe9e0b.zip
try using CtrlP instead of FuzzyFinder
Diffstat (limited to 'vim/ftplugin/perl.vim')
-rw-r--r--vim/ftplugin/perl.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/ftplugin/perl.vim b/vim/ftplugin/perl.vim
index b556a35..bd93eee 100644
--- a/vim/ftplugin/perl.vim
+++ b/vim/ftplugin/perl.vim
@@ -20,7 +20,7 @@ vmap <buffer> <silent>K :call Help(1, [':'], '<SID>perldoc')<CR>
nmap <buffer> <silent>gf :exe v:count . 'find ' . substitute(expand('<cfile>'), '::', '/', 'g') . '.pm'<CR>
" XXX: <cfile> is wrong here, need to do something like i do for Help
"vmap <buffer> <silent>gf :exe v:count . 'find ' . substitute(expand('<cfile>'), '::', '/', 'g') . '.pm'<CR>
-nnoremap <buffer> t :FufCoverageFile lib/<CR>
+let g:ctrlp_default_input = 'lib/'
function! s:unpostfix()
let postop_pattern = '\<\(if\|unless\|while\|until\|for\)\>'