some small edits
This commit is contained in:
parent
8d6406fe88
commit
f823efefee
@ -1,9 +1,9 @@
|
|||||||
" ============================================================
|
" =============================================================================
|
||||||
" File: autoload/ctrlp.vim
|
" File: autoload/ctrlp.vim
|
||||||
" Description: Full path fuzzy file finder for Vim.
|
" Description: Full path fuzzy file and buffer finder for Vim.
|
||||||
" Author: Kien Nguyen <info@designtomarkup.com>
|
" Author: Kien Nguyen <github.com/kien>
|
||||||
" License: MIT
|
" License: MIT
|
||||||
" ============================================================
|
" =============================================================================
|
||||||
|
|
||||||
let s:save_cpo = &cpo "{{{
|
let s:save_cpo = &cpo "{{{
|
||||||
set cpo&vim "}}}
|
set cpo&vim "}}}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
*ctrlp.txt* Full path fuzzy file finder for Vim.
|
*ctrlp.txt* Full path fuzzy file and buffer finder for Vim.
|
||||||
*CtrlP* *ControlP* *'ctrlp'* *'ctrl-p'*
|
*CtrlP* *ControlP* *'ctrlp'* *'ctrl-p'*
|
||||||
===============================================================================
|
===============================================================================
|
||||||
# #
|
# #
|
||||||
@ -23,8 +23,9 @@ CONTENTS *ctrlp-contents*
|
|||||||
===============================================================================
|
===============================================================================
|
||||||
1. Intro *ctrlp-intro*
|
1. Intro *ctrlp-intro*
|
||||||
|
|
||||||
Full path fuzzy file finder with an intuitive interface. Has full support for
|
Full path fuzzy file and buffer finder with an intuitive interface. Written in
|
||||||
Vim’s |regexp| as search pattern, and more.
|
pure Vimscript for MacVim and Vim 7.0+. Has full support for Vim’s |regexp| as
|
||||||
|
search pattern, and more.
|
||||||
|
|
||||||
See also |ctrlp-input-formats| and |ctrlp-fullregexp|.
|
See also |ctrlp-input-formats| and |ctrlp-fullregexp|.
|
||||||
|
|
||||||
@ -264,9 +265,9 @@ the majority of their (awesome) interfaces and the way they work.
|
|||||||
|
|
||||||
This was originally written as a module for a would-be larger plugin called
|
This was originally written as a module for a would-be larger plugin called
|
||||||
AutoDoc.vim which I’ve stopped developing because of lost of interest. I really
|
AutoDoc.vim which I’ve stopped developing because of lost of interest. I really
|
||||||
liked the way Command-T and LustyExplorer deal with user’s input, so I
|
liked the way Command-T and LustyExplorer deal with user’s input, so I wrote a
|
||||||
wrote a pure Vimscript version of their prompt window, intended to use it for
|
pure Vimscript version of their prompt window, intended to use it for the
|
||||||
the aforementioned plugin.
|
aforementioned plugin.
|
||||||
|
|
||||||
Git repository: https://github.com/kien/ctrlp.vim
|
Git repository: https://github.com/kien/ctrlp.vim
|
||||||
Mercurial repository: https://bitbucket.org/kien/ctrlp.vim
|
Mercurial repository: https://bitbucket.org/kien/ctrlp.vim
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
" ============================================================
|
" =============================================================================
|
||||||
" File: plugin/ctrlp.vim
|
" File: plugin/ctrlp.vim
|
||||||
" Description: Full path fuzzy file finder for Vim.
|
" Description: Full path fuzzy file and buffer finder for Vim.
|
||||||
" Author: Kien Nguyen <info@designtomarkup.com>
|
" Author: Kien Nguyen <github.com/kien>
|
||||||
" License: MIT
|
" License: MIT
|
||||||
" ============================================================
|
" =============================================================================
|
||||||
|
|
||||||
if ( exists('g:loaded_ctrlp') && g:loaded_ctrlp )
|
if ( exists('g:loaded_ctrlp') && g:loaded_ctrlp )
|
||||||
\ || v:version < '700'
|
\ || v:version < '700'
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
## About
|
## About
|
||||||
* Full path fuzzy file finder with an intuitive interface.
|
Full path fuzzy file and buffer finder for Vim.
|
||||||
* Has full support for Vim’s regexp as search pattern, and more.
|
|
||||||
* 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.
|
||||||
|
|
||||||
![ctrlp][1]
|
![ctrlp][1]
|
||||||
|
|
||||||
@ -47,7 +48,7 @@ adding the following line to your vimrc; the parameter is the same (1, 2 or 0):
|
|||||||
au BufEnter * cal ctrlp#SetWorkingPath(2)
|
au BufEnter * cal ctrlp#SetWorkingPath(2)
|
||||||
```
|
```
|
||||||
|
|
||||||
Check the docs for more mappings, commands and options.
|
_Check the docs for more mappings, commands and options._
|
||||||
|
|
||||||
[1]: http://designslicer.com/vim/images/ctrlp1.png
|
[1]: http://designslicer.com/vim/images/ctrlp1.png
|
||||||
[2]: http://designslicer.com/vim/images/ctrlp2.png
|
[2]: http://designslicer.com/vim/images/ctrlp2.png
|
||||||
|
Loading…
x
Reference in New Issue
Block a user