diff vim/vimfiles/plugin/ctrlp.vim @ 0:48859d9c82c5

Initial commit, based on settings used at work (minus NERD tree & some tagging plugins).
author Brian Neal <bgneal@gmail.com>
date Tue, 03 Jan 2012 20:53:13 -0600
parents
children 92af3257a261
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vim/vimfiles/plugin/ctrlp.vim	Tue Jan 03 20:53:13 2012 -0600
@@ -0,0 +1,44 @@
+" =============================================================================
+" File:          plugin/ctrlp.vim
+" Description:   Fuzzy file, buffer, mru and tag finder.
+" Author:        Kien Nguyen <github.com/kien>
+" =============================================================================
+" GetLatestVimScripts: 3736 1 :AutoInstall: ctrlp.zip
+
+if ( exists('g:loaded_ctrlp') && g:loaded_ctrlp ) || v:version < 700 || &cp
+	fini
+en
+let [g:loaded_ctrlp, g:ctrlp_lines, g:ctrlp_allfiles] = [1, [], []]
+
+if !exists('g:ctrlp_map') | let g:ctrlp_map = '<c-p>' | en
+
+com! -na=? -comp=custom,ctrlp#cpl CtrlP cal ctrlp#init(0, <q-args>)
+
+com! CtrlPBuffer   cal ctrlp#init(1)
+com! CtrlPMRUFiles cal ctrlp#init(2)
+
+com! ClearCtrlPCache cal ctrlp#clr()
+com! ClearAllCtrlPCaches cal ctrlp#clra()
+com! ResetCtrlP cal ctrlp#reset()
+
+com! CtrlPCurWD   cal ctrlp#init(0, 0)
+com! CtrlPCurFile cal ctrlp#init(0, 1)
+com! CtrlPRoot    cal ctrlp#init(0, 2)
+
+exe 'nn <silent>' g:ctrlp_map ':<c-u>CtrlP<cr>'
+
+cal ctrlp#mrufiles#init()
+
+if !exists('g:ctrlp_extensions') | fini | en
+
+if index(g:ctrlp_extensions, 'tag') >= 0
+	let g:ctrlp_alltags = [] | com! CtrlPTag cal ctrlp#init(ctrlp#tag#id())
+en
+
+if index(g:ctrlp_extensions, 'quickfix') >= 0
+	com! CtrlPQuickfix cal ctrlp#init(ctrlp#quickfix#id())
+en
+
+if index(g:ctrlp_extensions, 'dir') >= 0
+	let g:ctrlp_alldirs = [] | com! CtrlPDir cal ctrlp#init(ctrlp#dir#id())
+en