diff options
| author | Takahiro Yoshihara | 2021-10-19 10:16:50 +0900 |
|---|---|---|
| committer | GitHub | 2021-10-19 10:16:50 +0900 |
| commit | 25741386565b4161ea23860a672ba97e184c1b2b (patch) | |
| tree | fe88597d0f723dd7c0be22bbe83176fc25a6eab5 | |
| parent | d55a11de6586ecf6972dcdcd5d2a319f3a93c1dd (diff) | |
| parent | c9ef08735d3db380c2e96dd3560ef1a1f0740521 (diff) | |
| download | ctrlp.vim-25741386565b4161ea23860a672ba97e184c1b2b.tar.gz | |
Merge pull request #558 from coolaj86/patch-1
add install instructions
| -rw-r--r-- | readme.md | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -11,6 +11,15 @@ Full path fuzzy __file__, __buffer__, __mru__, __tag__, __...__ finder for Vim. ![ctrlp][1] +## Install + +vim 8+ manages packages all on its own. Installing `ctrlp` is this simple: + +```bash +mkdir -p ~/.vim/pack/plugins/start +git clone --depth=1 https://github.com/ctrlpvim/ctrlp.vim.git ~/.vim/pack/plugins/start/ctrlp +``` + ## Basic Usage * Run `:CtrlP` or `:CtrlP [starting-directory]` to invoke CtrlP in find file mode. * Run `:CtrlPBuffer` or `:CtrlPMRU` to invoke CtrlP in find buffer or find MRU file mode. |