update readme with new ..
input
This commit is contained in:
parent
1fecf8bc3f
commit
df2622f294
@ -629,6 +629,7 @@ endfunc
|
|||||||
func! s:ToggleRegex() "{{{
|
func! s:ToggleRegex() "{{{
|
||||||
let s:regexp = s:regexp ? 0 : 1
|
let s:regexp = s:regexp ? 0 : 1
|
||||||
cal s:statusline()
|
cal s:statusline()
|
||||||
|
let s:nomatches = 1
|
||||||
cal s:BuildPrompt(s:Focus())
|
cal s:BuildPrompt(s:Focus())
|
||||||
endfunc "}}}
|
endfunc "}}}
|
||||||
|
|
||||||
@ -636,6 +637,7 @@ func! s:ToggleByFname() "{{{
|
|||||||
let s:byfname = s:byfname ? 0 : 1
|
let s:byfname = s:byfname ? 0 : 1
|
||||||
cal s:MapKeys(s:Focus(), 1)
|
cal s:MapKeys(s:Focus(), 1)
|
||||||
cal s:statusline()
|
cal s:statusline()
|
||||||
|
let s:nomatches = 1
|
||||||
cal s:BuildPrompt(s:Focus())
|
cal s:BuildPrompt(s:Focus())
|
||||||
endfunc "}}}
|
endfunc "}}}
|
||||||
|
|
||||||
@ -650,6 +652,7 @@ func! s:Type(type) "{{{
|
|||||||
cal s:syntax()
|
cal s:syntax()
|
||||||
cal s:SetLines(s:itemtype)
|
cal s:SetLines(s:itemtype)
|
||||||
cal s:statusline()
|
cal s:statusline()
|
||||||
|
let s:nomatches = 1
|
||||||
cal s:BuildPrompt(s:Focus())
|
cal s:BuildPrompt(s:Focus())
|
||||||
endfunc "}}}
|
endfunc "}}}
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@ Full path fuzzy file, buffer and MRU file finder for Vim.
|
|||||||
* Or press `<c-r>` while CtrlP is open to switch to full regexp search mode.
|
* Or press `<c-r>` while CtrlP is open to switch to full regexp search mode.
|
||||||
* End the input string with a colon `:` followed with a number to jump to that line in the selected file.
|
* End the input string with a colon `:` followed with a number to jump to that line in the selected file.
|
||||||
e.g. `abc:45` to open the file matched the pattern and jump to line 45.
|
e.g. `abc:45` to open the file matched the pattern and jump to line 45.
|
||||||
|
* Submit two dots `..` as the input string to go backward the directory tree by 1 level.
|
||||||
|
|
||||||
_Screenshot: filename only mode with the match window focused._
|
_Screenshot: filename only mode with the match window focused._
|
||||||
![ctrlp filename mode, match window focused][2]
|
![ctrlp filename mode, match window focused][2]
|
||||||
@ -59,6 +60,6 @@ The parameter is the same (0, 1 or 2):
|
|||||||
|
|
||||||
_Check [the docs][3] for more mappings, commands and options._
|
_Check [the docs][3] for more mappings, commands and options._
|
||||||
|
|
||||||
[1]: http://i.imgur.com/lQScr.png
|
[1]: http://i.imgur.com/Gfntl.png
|
||||||
[2]: http://i.imgur.com/MyRIv.png
|
[2]: http://i.imgur.com/MyRIv.png
|
||||||
[3]: https://github.com/kien/ctrlp.vim/blob/master/doc/ctrlp.txt
|
[3]: https://github.com/kien/ctrlp.vim/blob/master/doc/ctrlp.txt
|
||||||
|
Loading…
Reference in New Issue
Block a user