From 7037f92f8868414e7f19dca42d46310738240b87 Mon Sep 17 00:00:00 2001 From: Kien N Date: Fri, 22 Mar 2013 03:18:30 +0700 Subject: [PATCH] Revert "Move the completion function" This reverts commit 3c6182371db8e8ede3789d21b52386569eda2208. Revert "Use a custom completion function" This reverts commit bedfa3b6c3badc4fa6b734098fb9b89972cdf894. --- autoload/ctrlp/utils.vim | 10 ---------- plugin/ctrlp.vim | 11 ++++------- 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/autoload/ctrlp/utils.vim b/autoload/ctrlp/utils.vim index d54fd38..91b9f24 100644 --- a/autoload/ctrlp/utils.vim +++ b/autoload/ctrlp/utils.vim @@ -105,16 +105,6 @@ fu! ctrlp#utils#fnesc(path, type, ...) en retu a:0 ? escape(path, a:1) : path endf - -fu! ctrlp#utils#dircompl(...) - let [hsl, str] = [match(a:1, '[\/]'), ''] - let par = substitute(a:1, '[^\/]*$', '', '') - let path = !hsl ? par : hsl > 0 ? getcwd().s:lash().par : getcwd() - for dir in split(globpath(ctrlp#utils#fnesc(path, 'g', ','), '*/'), '\n') - let str .= par.split(dir, '[\/]')[-1]."\n" - endfo - retu str -endf "}}} " vim:fen:fdm=marker:fmr={{{,}}}:fdl=0:fdc=1:ts=2:sw=2:sts=2 diff --git a/plugin/ctrlp.vim b/plugin/ctrlp.vim index 68cae86..b6f9a27 100644 --- a/plugin/ctrlp.vim +++ b/plugin/ctrlp.vim @@ -17,11 +17,8 @@ let [g:ctrlp_lines, g:ctrlp_allfiles, g:ctrlp_alltags, g:ctrlp_alldirs, if !exists('g:ctrlp_map') | let g:ctrlp_map = '' | 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': }) - -com! -n=? -com=custom,ctrlp#utils#dircompl CtrlPMRUFiles - \ cal ctrlp#init(2, { 'dir': }) +com! -n=? -com=dir CtrlP cal ctrlp#init(0, { 'dir': }) +com! -n=? -com=dir CtrlPMRUFiles cal ctrlp#init(2, { 'dir': }) com! -bar CtrlPBuffer cal ctrlp#init(1) com! -n=? CtrlPLastMode cal ctrlp#init(-1, { 'args': }) @@ -45,7 +42,7 @@ 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 +com! -n=? -com=dir CtrlPDir \ cal ctrlp#init(ctrlp#dir#id(), { 'dir': }) com! -n=? -com=buffer CtrlPBufTag @@ -63,7 +60,7 @@ 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 +com! -n=? -com=dir CtrlPBookmarkDirAdd \ cal ctrlp#call('ctrlp#bookmarkdir#add', ) " vim:ts=2:sw=2:sts=2