From 2e590e3b02779344884ac42cb7aed63acb42ee2e Mon Sep 17 00:00:00 2001 From: Kien N Date: Fri, 20 Apr 2012 07:35:45 +0700 Subject: [PATCH] Fix var type --- autoload/ctrlp.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/ctrlp.vim b/autoload/ctrlp.vim index d967a8a..2dc0a33 100644 --- a/autoload/ctrlp.vim +++ b/autoload/ctrlp.vim @@ -1017,7 +1017,7 @@ fu! s:mixedsort(...) let ms = [] if s:height < 21 if s:itemtype !~ '\v^(1|2)$' | let ms += [s:comptime(a:1, a:2)] | en - let ms += s:compfnlen(a:1, a:2) + let ms += [s:compfnlen(a:1, a:2)] if !s:itemtype | let ms += [s:comparent(a:1, a:2)] | en en if s:itemtype =~ '\v^(1|2)$' | let ms += [s:compmref(a:1, a:2)] | en