Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ctrlp is a magical Vim plugin for finding files quickly. It lets you "fuzzy find" files, which you'll be familiar with if you use Sublime a lot. Basically, you can type a subset of the letters in a file's name, and the plugin will be smart enough to figure it out.
- Loading branch information
80db74f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(<-- prev step) ... (next step -->)
Note, development of this project has moved locations to ctrlpvim/ctrlp.vim.
I didn't have time to cover this extensively in my talk, but it's actually really cool. To use:
From within normal mode, press Ctrl + P, and start typing. You'll see that a list of all files in this subdirectory are getting filtered as you type, and you only have to type a few characters to bring up the file that you need. In a huge project directory, this is a huge time saver!
Press Enter to open the file, or Ctrl +T to open in a new tab.
For more about the cool features ctrlp supports, read the docs!
80db74f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should mention the silver searcher with this plugin to get a huge search speedup
80db74f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unite.vim is also a good alternative to ctrlp, comes packed with even more features.
80db74f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree. Unite.vim is one stop solution for which replaces many vim plugins with a unified interface and keybindings.
80db74f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
80db74f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kien/ctrlp.vim
is no longer maintained. It recommends usingctrlpvim/ctrlp.vim
80db74f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I'll update the comment.