Add ctrlp#switchtype()
This commit is contained in:
parent
51eab2572a
commit
af2847a65d
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user