Skip to content

Commit

Permalink
Plugin ctrlp
Browse files Browse the repository at this point in the history
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
jez committed Feb 25, 2015
1 parent fd2c49c commit 80db74f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vimrc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Plugin 'scrooloose/syntastic'
Plugin 'xolox/vim-misc'
Plugin 'xolox/vim-easytags'
Plugin 'majutsushi/tagbar'
Plugin 'kien/ctrlp.vim'

call vundle#end()

Expand Down

7 comments on commit 80db74f

@jez
Copy link
Owner Author

@jez jez commented on 80db74f Feb 26, 2015

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!

@weitzj
Copy link

@weitzj weitzj commented on 80db74f Feb 26, 2015

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

@akurilin
Copy link

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.

@sbhal
Copy link

@sbhal sbhal commented on 80db74f Jun 10, 2015

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.

@jez
Copy link
Owner Author

@jez jez commented on 80db74f Jun 10, 2015 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nogorilla
Copy link

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 using ctrlpvim/ctrlp.vim

@jez
Copy link
Owner Author

@jez jez commented on 80db74f Mar 21, 2016

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.

Please sign in to comment.