| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- " =============================================================================
- " 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 = 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=dir CtrlP cal ctrlp#init(0, <q-args>)
- com! CtrlPBuffer cal ctrlp#init(1)
- com! CtrlPMRUFiles cal ctrlp#init(2)
- com! CtrlPLastMode cal ctrlp#init(-1)
- com! CtrlPClearCache cal ctrlp#clr()
- com! CtrlPClearAllCaches cal ctrlp#clra()
- com! CtrlPReload cal ctrlp#reset()
- 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)
- 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! CtrlPTag cal ctrlp#init(ctrlp#tag#id())
- com! CtrlPQuickfix cal ctrlp#init(ctrlp#quickfix#id())
- com! -n=? -com=dir CtrlPDir
- \ cal ctrlp#init(ctrlp#dir#id(), <q-args>)
- com! -n=? -com=buffer CtrlPBufTag
- \ cal ctrlp#init(ctrlp#buffertag#cmd(0, <q-args>))
- com! CtrlPBufTagAll cal ctrlp#init(ctrlp#buffertag#cmd(1))
- com! CtrlPRTS cal ctrlp#init(ctrlp#rtscript#id())
- com! CtrlPUndo cal ctrlp#init(ctrlp#undo#id())
- com! CtrlPLine cal ctrlp#init(ctrlp#line#id())
- com! -n=? -com=buffer CtrlPChange
- \ cal ctrlp#init(ctrlp#changes#cmd(0, <q-args>))
- com! CtrlPChangeAll cal ctrlp#init(ctrlp#changes#cmd(1))
- com! CtrlPMixed cal ctrlp#init(ctrlp#mixed#id())
- com! CtrlPBookmarkDir cal ctrlp#init(ctrlp#bookmarkdir#id())
- com! -n=? -com=dir CtrlPBookmarkDirAdd
- \ cal ctrlp#call('ctrlp#bookmarkdir#add', <q-args>)
|