From 210becb67478fcc6cf733be22b1d91c6bd0221eb Mon Sep 17 00:00:00 2001 From: Artem Sheremet Date: Mon, 21 Apr 2014 10:57:18 -0700 Subject: [PATCH] Replace CommandT with CtrlP --- .vimrc | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.vimrc b/.vimrc index 425f21b..05fdfab 100644 --- a/.vimrc +++ b/.vimrc @@ -120,12 +120,7 @@ Bundle 'gmarik/vundle' Bundle 'mileszs/ack.vim' -Bundle 'wincent/Command-T' -execute 'silent !( - \ cd ~/.vim/bundle/Command-T/ruby/command-t && - \ sleep 2 && - \ ruby extconf.rb && - \ make) >/dev/null 2>>~/.vimerr &' +Bundle 'kien/ctrlp.vim' Bundle 'vim-scripts/mru.vim' Bundle 'scrooloose/nerdcommenter' @@ -212,7 +207,7 @@ fu! Amap(key, cmd, ...) exe "imap <" . a:key . "> <" . a:key . ">" endf -call Amap("C-t", "CommandT") +call Amap("C-t", "CtrlP") call Amap("C-n", "tabnew") call Amap("C-b", ":ls:b", 0)