From bf14c9c8a3425b3dcedffbc82aad7fc2e5db779e Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Thu, 10 Apr 2014 14:51:37 -0400 Subject: [PATCH] Drop support for CtrlP in history This is fairly straightforward to do outside of fugitive.vim, and there's no reason to give it privileged treatment here. Closes #403. --- plugin/fugitive.vim | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index 0f779d2..46451e9 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -2349,9 +2349,6 @@ augroup END function! s:JumpInit() abort nnoremap :exe GF("edit") if !&modifiable - if exists(':CtrlP') - nnoremap :exe 'CtrlP '.fnameescape(repo().tree()) - endif nnoremap o :exe GF("split") nnoremap S :exe GF("vsplit") nnoremap O :exe GF("tabedit")