Add ctrlp#switchtype()
This commit is contained in:
parent
51eab2572a
commit
af2847a65d
@ -1487,8 +1487,8 @@ fu! s:regexfilter(str)
|
|||||||
retu str
|
retu str
|
||||||
endf
|
endf
|
||||||
|
|
||||||
fu! s:walker(max, pos, dir)
|
fu! s:walker(m, p, d)
|
||||||
retu a:dir > 0 ? a:pos < a:max ? a:pos + 1 : 0 : a:pos > 0 ? a:pos - 1 : a:max
|
retu a:d > 0 ? a:p < a:m ? a:p + a:d : 0 : a:p > 0 ? a:p + a:d : a:m
|
||||||
endf
|
endf
|
||||||
|
|
||||||
fu! s:matchfname(item, pat)
|
fu! s:matchfname(item, pat)
|
||||||
@ -1547,6 +1547,10 @@ endf
|
|||||||
fu! ctrlp#prtclear()
|
fu! ctrlp#prtclear()
|
||||||
cal s:PrtClear()
|
cal s:PrtClear()
|
||||||
endf
|
endf
|
||||||
|
|
||||||
|
fu! ctrlp#switchtype(id)
|
||||||
|
cal s:ToggleType(a:id - s:itemtype)
|
||||||
|
endf
|
||||||
"}}}1
|
"}}}1
|
||||||
" * Initialization {{{1
|
" * Initialization {{{1
|
||||||
fu! ctrlp#setlines(type)
|
fu! ctrlp#setlines(type)
|
||||||
|
Loading…
Reference in New Issue
Block a user