parent
27e2375bc0
commit
0102255dce
@ -455,7 +455,7 @@ endf
|
|||||||
fu! s:MatchIt(items, pat, limit, exc)
|
fu! s:MatchIt(items, pat, limit, exc)
|
||||||
let [lines, id] = [[], 0]
|
let [lines, id] = [[], 0]
|
||||||
let pat =
|
let pat =
|
||||||
\ s:byfname ? map(split(a:pat, '^[^;]\+\\\@<!\zs;', 1), 's:martcs.v:val')
|
\ s:byfname() ? map(split(a:pat, '^[^;]\+\\\@<!\zs;', 1), 's:martcs.v:val')
|
||||||
\ : s:martcs.a:pat
|
\ : s:martcs.a:pat
|
||||||
for item in a:items
|
for item in a:items
|
||||||
let id += 1
|
let id += 1
|
||||||
@ -511,7 +511,7 @@ fu! s:SplitPattern(str)
|
|||||||
if exists('lst')
|
if exists('lst')
|
||||||
let pat = ''
|
let pat = ''
|
||||||
if !empty(lst)
|
if !empty(lst)
|
||||||
if s:byfname && index(lst, ';') > 0
|
if s:byfname() && index(lst, ';') > 0
|
||||||
let fbar = index(lst, ';')
|
let fbar = index(lst, ';')
|
||||||
let lst_1 = s:sublist(lst, 0, fbar - 1)
|
let lst_1 = s:sublist(lst, 0, fbar - 1)
|
||||||
let lst_2 = len(lst) - 1 > fbar ? s:sublist(lst, fbar + 1, -1) : ['']
|
let lst_2 = len(lst) - 1 > fbar ? s:sublist(lst, fbar + 1, -1) : ['']
|
||||||
@ -527,7 +527,7 @@ endf
|
|||||||
fu! s:Render(lines, pat)
|
fu! s:Render(lines, pat)
|
||||||
let [&ma, lines, s:res_count] = [1, a:lines, len(a:lines)]
|
let [&ma, lines, s:res_count] = [1, a:lines, len(a:lines)]
|
||||||
let height = min([max([s:mw_min, s:res_count]), s:winmaxh])
|
let height = min([max([s:mw_min, s:res_count]), s:winmaxh])
|
||||||
let pat = s:byfname ? split(a:pat, '^[^;]\+\\\@<!\zs;', 1)[0] : a:pat
|
let pat = s:byfname() ? split(a:pat, '^[^;]\+\\\@<!\zs;', 1)[0] : a:pat
|
||||||
let cur_cmd = 'keepj norm! '.( s:mw_order == 'btt' ? 'G' : 'gg' ).'1|'
|
let cur_cmd = 'keepj norm! '.( s:mw_order == 'btt' ? 'G' : 'gg' ).'1|'
|
||||||
" Setup the match window
|
" Setup the match window
|
||||||
sil! exe '%d _ | res' height
|
sil! exe '%d _ | res' height
|
||||||
@ -585,7 +585,7 @@ fu! s:ForceUpdate()
|
|||||||
endf
|
endf
|
||||||
|
|
||||||
fu! s:BuildPrompt(upd)
|
fu! s:BuildPrompt(upd)
|
||||||
let base = ( s:regexp ? 'r' : '>' ).( s:byfname ? 'd' : '>' ).'> '
|
let base = ( s:regexp ? 'r' : '>' ).( s:byfname() ? 'd' : '>' ).'> '
|
||||||
let str = escape(s:getinput(), '\')
|
let str = escape(s:getinput(), '\')
|
||||||
let lazy = str == '' || exists('s:force') || !has('autocmd') ? 0 : s:lazy
|
let lazy = str == '' || exists('s:force') || !has('autocmd') ? 0 : s:lazy
|
||||||
if a:upd && !lazy && ( s:matches || s:regexp || exists('s:did_exp')
|
if a:upd && !lazy && ( s:matches || s:regexp || exists('s:did_exp')
|
||||||
@ -768,7 +768,7 @@ endf
|
|||||||
|
|
||||||
fu! s:PrtSelectJump(char)
|
fu! s:PrtSelectJump(char)
|
||||||
let lines = copy(s:lines)
|
let lines = copy(s:lines)
|
||||||
if s:byfname
|
if s:byfname()
|
||||||
cal map(lines, 'split(v:val, ''[\/]\ze[^\/]\+$'')[-1]')
|
cal map(lines, 'split(v:val, ''[\/]\ze[^\/]\+$'')[-1]')
|
||||||
en
|
en
|
||||||
" Cycle through matches, use s:jmpchr to store last jump
|
" Cycle through matches, use s:jmpchr to store last jump
|
||||||
@ -1377,7 +1377,7 @@ fu! ctrlp#statusline()
|
|||||||
let prv = tps[s:walker(max, s:itemtype, -1)][1]
|
let prv = tps[s:walker(max, s:itemtype, -1)][1]
|
||||||
let s:ctype = tps[s:itemtype][0]
|
let s:ctype = tps[s:itemtype][0]
|
||||||
let focus = s:focus ? 'prt' : 'win'
|
let focus = s:focus ? 'prt' : 'win'
|
||||||
let byfname = s:byfname ? 'file' : 'path'
|
let byfname = s:ispath ? s:byfname ? 'file' : 'path' : 'line'
|
||||||
let marked = s:opmul != '0' ?
|
let marked = s:opmul != '0' ?
|
||||||
\ exists('s:marked') ? ' <'.s:dismrk().'>' : ' <->' : ''
|
\ exists('s:marked') ? ' <'.s:dismrk().'>' : ' <->' : ''
|
||||||
if s:status != {}
|
if s:status != {}
|
||||||
@ -1892,7 +1892,6 @@ endf
|
|||||||
fu! s:modevar()
|
fu! s:modevar()
|
||||||
let s:matchtype = s:mtype()
|
let s:matchtype = s:mtype()
|
||||||
let s:ispath = s:ispathitem()
|
let s:ispath = s:ispathitem()
|
||||||
if !s:ispath | let s:byfname = 0 | en
|
|
||||||
let s:mfunc = s:mfunc()
|
let s:mfunc = s:mfunc()
|
||||||
let s:nolim = s:getextvar('nolim')
|
let s:nolim = s:getextvar('nolim')
|
||||||
let s:dosort = s:getextvar('sort')
|
let s:dosort = s:getextvar('sort')
|
||||||
@ -1904,6 +1903,10 @@ fu! s:nosort()
|
|||||||
\ || ( s:itemtype =~ '\v^(1|2)$' && s:prompt == ['', '', ''] ) || !s:dosort
|
\ || ( s:itemtype =~ '\v^(1|2)$' && s:prompt == ['', '', ''] ) || !s:dosort
|
||||||
endf
|
endf
|
||||||
|
|
||||||
|
fu! s:byfname()
|
||||||
|
retu s:ispath && s:byfname
|
||||||
|
endf
|
||||||
|
|
||||||
fu! s:narrowable()
|
fu! s:narrowable()
|
||||||
retu exists('s:act_add') && exists('s:matched') && s:matched != []
|
retu exists('s:act_add') && exists('s:matched') && s:matched != []
|
||||||
\ && exists('s:mdata') && s:mdata[:2] == [s:dyncwd, s:itemtype, s:regexp]
|
\ && exists('s:mdata') && s:mdata[:2] == [s:dyncwd, s:itemtype, s:regexp]
|
||||||
@ -1918,7 +1921,7 @@ fu! s:getinput(...)
|
|||||||
if gmd =~ 't' && gmd =~ 'k' && !a:0 && matchstr(str, '.$') =~ '\k'
|
if gmd =~ 't' && gmd =~ 'k' && !a:0 && matchstr(str, '.$') =~ '\k'
|
||||||
retu join(prt, '')
|
retu join(prt, '')
|
||||||
en
|
en
|
||||||
let [pf, rz] = [( s:byfname ? 'f' : 'p' ), ( s:regexp ? 'r' : 'z' )]
|
let [pf, rz] = [( s:byfname() ? 'f' : 'p' ), ( s:regexp ? 'r' : 'z' )]
|
||||||
for dict in s:abbrev['abbrevs']
|
for dict in s:abbrev['abbrevs']
|
||||||
let dmd = has_key(dict, 'mode') ? dict['mode'] : ''
|
let dmd = has_key(dict, 'mode') ? dict['mode'] : ''
|
||||||
let pat = escape(dict['pattern'], '~')
|
let pat = escape(dict['pattern'], '~')
|
||||||
@ -2108,7 +2111,7 @@ endf
|
|||||||
|
|
||||||
fu! s:mfunc()
|
fu! s:mfunc()
|
||||||
let mfunc = 'match'
|
let mfunc = 'match'
|
||||||
if s:byfname && s:ispath
|
if s:byfname()
|
||||||
let mfunc = 's:matchfname'
|
let mfunc = 's:matchfname'
|
||||||
elsei s:itemtype > 2
|
elsei s:itemtype > 2
|
||||||
let matchtypes = { 'tabs': 's:matchtabs', 'tabe': 's:matchtabe' }
|
let matchtypes = { 'tabs': 's:matchtabs', 'tabe': 's:matchtabe' }
|
||||||
|
@ -1194,7 +1194,7 @@ Highlighting:~
|
|||||||
|
|
||||||
Statuslines:~
|
Statuslines:~
|
||||||
* Highlight groups:
|
* Highlight groups:
|
||||||
CtrlPMode1 : 'file' or 'path', and the current mode (Character)
|
CtrlPMode1 : 'file' or 'path' or 'line', and the current mode (Character)
|
||||||
CtrlPMode2 : 'prt' or 'win', 'regex', the working directory (|hl-LineNr|)
|
CtrlPMode2 : 'prt' or 'win', 'regex', the working directory (|hl-LineNr|)
|
||||||
CtrlPStats : the scanning status (Function)
|
CtrlPStats : the scanning status (Function)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user