Add ctrlp#switchtype()

This commit is contained in:
Kien N 2012-03-16 16:48:16 +07:00
parent 51eab2572a
commit af2847a65d

View File

@ -1487,8 +1487,8 @@ fu! s:regexfilter(str)
retu str
endf
fu! s:walker(max, pos, dir)
retu a:dir > 0 ? a:pos < a:max ? a:pos + 1 : 0 : a:pos > 0 ? a:pos - 1 : a:max
fu! s:walker(m, p, d)
retu a:d > 0 ? a:p < a:m ? a:p + a:d : 0 : a:p > 0 ? a:p + a:d : a:m
endf
fu! s:matchfname(item, pat)
@ -1547,6 +1547,10 @@ endf
fu! ctrlp#prtclear()
cal s:PrtClear()
endf
fu! ctrlp#switchtype(id)
cal s:ToggleType(a:id - s:itemtype)
endf
"}}}1
" * Initialization {{{1
fu! ctrlp#setlines(type)