diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2013-02-20 18:14:12 +0100 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2013-02-20 18:14:12 +0100 |
| commit | 17f8af068032955d79eb44e5ae51b0c914393594 (patch) | |
| tree | 46623a112d11b6a4657becf70a2b58b97c43e38e /.vim/bundle/ctrlp.vim/plugin | |
| parent | 174955d60585f22d33267ab51c4481122cb4003d (diff) | |
| download | dotfiles-17f8af068032955d79eb44e5ae51b0c914393594.tar.gz | |
Make both previously added plugins submodules
Diffstat (limited to '.vim/bundle/ctrlp.vim/plugin')
| -rw-r--r-- | .vim/bundle/ctrlp.vim/plugin/ctrlp.vim | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/.vim/bundle/ctrlp.vim/plugin/ctrlp.vim b/.vim/bundle/ctrlp.vim/plugin/ctrlp.vim deleted file mode 100644 index 68cae86..0000000 --- a/.vim/bundle/ctrlp.vim/plugin/ctrlp.vim +++ /dev/null @@ -1,69 +0,0 @@ -" ============================================================================= -" File: plugin/ctrlp.vim -" Description: Fuzzy file, buffer, mru, tag, etc 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 = 1 - -let [g:ctrlp_lines, g:ctrlp_allfiles, g:ctrlp_alltags, g:ctrlp_alldirs, - \ g:ctrlp_allmixes, g:ctrlp_buftags, g:ctrlp_ext_vars, g:ctrlp_builtins] - \ = [[], [], [], [], {}, {}, [], 2] - -if !exists('g:ctrlp_map') | let g:ctrlp_map = '<c-p>' | en -if !exists('g:ctrlp_cmd') | let g:ctrlp_cmd = 'CtrlP' | en - -com! -n=? -com=custom,ctrlp#utils#dircompl CtrlP - \ cal ctrlp#init(0, { 'dir': <q-args> }) - -com! -n=? -com=custom,ctrlp#utils#dircompl CtrlPMRUFiles - \ cal ctrlp#init(2, { 'dir': <q-args> }) - -com! -bar CtrlPBuffer cal ctrlp#init(1) -com! -n=? CtrlPLastMode cal ctrlp#init(-1, { 'args': <q-args> }) - -com! -bar CtrlPClearCache cal ctrlp#clr() -com! -bar CtrlPClearAllCaches cal ctrlp#clra() - -com! -bar ClearCtrlPCache cal ctrlp#clr() -com! -bar ClearAllCtrlPCaches cal ctrlp#clra() - -com! -bar CtrlPCurWD cal ctrlp#init(0, { 'mode': '' }) -com! -bar CtrlPCurFile cal ctrlp#init(0, { 'mode': 'c' }) -com! -bar CtrlPRoot cal ctrlp#init(0, { 'mode': 'r' }) - -if g:ctrlp_map != '' && !hasmapto(':<c-u>'.g:ctrlp_cmd.'<cr>', 'n') - exe 'nn <silent>' g:ctrlp_map ':<c-u>'.g:ctrlp_cmd.'<cr>' -en - -cal ctrlp#mrufiles#init() - -com! -bar CtrlPTag cal ctrlp#init(ctrlp#tag#id()) -com! -bar CtrlPQuickfix cal ctrlp#init(ctrlp#quickfix#id()) - -com! -n=? -com=custom,ctrlp#utils#dircompl CtrlPDir - \ cal ctrlp#init(ctrlp#dir#id(), { 'dir': <q-args> }) - -com! -n=? -com=buffer CtrlPBufTag - \ cal ctrlp#init(ctrlp#buffertag#cmd(0, <q-args>)) - -com! -bar CtrlPBufTagAll cal ctrlp#init(ctrlp#buffertag#cmd(1)) -com! -bar CtrlPRTS cal ctrlp#init(ctrlp#rtscript#id()) -com! -bar CtrlPUndo cal ctrlp#init(ctrlp#undo#id()) -com! -bar CtrlPLine cal ctrlp#init(ctrlp#line#id()) - -com! -n=? -com=buffer CtrlPChange - \ cal ctrlp#init(ctrlp#changes#cmd(0, <q-args>)) - -com! -bar CtrlPChangeAll cal ctrlp#init(ctrlp#changes#cmd(1)) -com! -bar CtrlPMixed cal ctrlp#init(ctrlp#mixed#id()) -com! -bar CtrlPBookmarkDir cal ctrlp#init(ctrlp#bookmarkdir#id()) - -com! -n=? -com=custom,ctrlp#utils#dircompl CtrlPBookmarkDirAdd - \ cal ctrlp#call('ctrlp#bookmarkdir#add', <q-args>) - -" vim:ts=2:sw=2:sts=2 |
