udate docs
This commit is contained in:
parent
fbcfec256e
commit
1c9a615111
@ -1,4 +1,4 @@
|
|||||||
*ctrlp.txt* Full path fuzzy files, buffers and mru files finder for Vim.
|
*ctrlp.txt* Full path fuzzy file, buffer and MRU file finder for Vim.
|
||||||
*CtrlP* *ControlP* *'ctrlp'* *'ctrl-p'*
|
*CtrlP* *ControlP* *'ctrlp'* *'ctrl-p'*
|
||||||
===============================================================================
|
===============================================================================
|
||||||
# #
|
# #
|
||||||
@ -23,9 +23,9 @@ CONTENTS *ctrlp-contents*
|
|||||||
===============================================================================
|
===============================================================================
|
||||||
1. Intro *ctrlp-intro*
|
1. Intro *ctrlp-intro*
|
||||||
|
|
||||||
Full path fuzzy files, buffers and mru files finder with an intuitive
|
Full path fuzzy file, buffer and MRU file finder with an intuitive interface.
|
||||||
interface. Written in pure Vimscript for MacVim and Vim version 7.0+. Has full
|
Written in pure Vimscript for MacVim and Vim version 7.0+. Has full support for
|
||||||
support for Vim’s |regexp| as search pattern, and more.
|
Vim’s |regexp| as search pattern, and more.
|
||||||
|
|
||||||
See also |ctrlp-input-formats| and |ctrlp-fullregexp|.
|
See also |ctrlp-input-formats| and |ctrlp-fullregexp|.
|
||||||
|
|
||||||
@ -325,6 +325,7 @@ CHANGELOG
|
|||||||
|
|
||||||
*ctrlp-update-1*
|
*ctrlp-update-1*
|
||||||
Update #1~
|
Update #1~
|
||||||
|
+ New feature: search in most recently used (MRU) files
|
||||||
+ New mapping: <c-b>.
|
+ New mapping: <c-b>.
|
||||||
+ Extended the behavior of <c-f>.
|
+ Extended the behavior of <c-f>.
|
||||||
+ New options: |g:ctrlp_mru_files|,
|
+ New options: |g:ctrlp_mru_files|,
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
# ctrlp.vim
|
# ctrlp.vim
|
||||||
Full path fuzzy files, buffers and MRU files finder for Vim.
|
Full path fuzzy file, buffer and MRU file finder for Vim.
|
||||||
|
|
||||||
* Written in pure Vimscript for MacVim and Vim 7.0+.
|
* Written in pure Vimscript for MacVim and Vim 7.0+.
|
||||||
* Has full support for Vim’s regexp as search pattern, and more.
|
* Has full support for Vim’s regexp as search pattern, and more.
|
||||||
* Also: find files in most recently opened files (i.e. MRU files).
|
* Can also find file in most recently used files.
|
||||||
|
|
||||||
![ctrlp][1]
|
![ctrlp][1]
|
||||||
|
|
||||||
## Basic Usage
|
## Basic Usage
|
||||||
* Press `<c-p>` or run `:CtrlP` to invoke CtrlP.
|
* Press `<c-p>` or run `:CtrlP` to invoke CtrlP.
|
||||||
* Press `<c-f>` while CtrlP is open to toggle between find files, find buffers, and find MRU files modes.
|
* Press `<c-f>` `<c-b> while CtrlP is open to switch between find file, find buffer, and find MRU file modes.
|
||||||
* Ever remember only a file’s name but not where it is? Press `<c-d>` while CtrlP is open to switch to filename only search.
|
* Ever remember only a file’s name but not where it is? Press `<c-d>` while CtrlP is open to switch to filename only search.
|
||||||
* Use `*` `?` `^` `+` or `|` in the prompt to submit the string as a Vim’s regexp pattern.
|
* Use `*` `?` `^` `+` or `|` in the prompt to submit the string as a Vim’s regexp pattern.
|
||||||
* 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.
|
||||||
|
Loading…
Reference in New Issue
Block a user