I've moved to ctrlp over Command-T as it's pure Vimscript. Feels even faster than Command-T to me: https://github.com/kien/ctrlp.vim
Plugins you should put in your vimrc
31–40 of 99 posts
Re: Plugins you should put in your vimrc
#32I prefer CtrlP to CommandT, since it does not requires external programs. https://github.com/kien/ctrlp.vim
Re: Plugins you should put in your vimrc
#33Re: Plugins you should put in your vimrc
#34I prefer CtrlP to CommandT, since it does not requires external programs. https://github.com/kien/ctrlp.vim
i had trouble with CtrlP initialy because the initial load time is too slow. However, this config line fix it for me let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files'] It lets CtrlP use git to list files, which is much faster for large project
let g:ctrlp_user_command = ['.git/', 'cd %s && git ls-files --exclude-standard -co']
It was annoying me that I couldn't open files I'd just created with CtrlP, as they wern't yet tracked.Re: Plugins you should put in your vimrc
#35Every time an article like this comes up, snipMate seems to be mentioned. This particular author even pointed to the old repository which appears unmaintained and has not had a check-in for two years. Where's the love for UltiSnips? [1] UltiSnips is actively maintained and well documented, not to mention supporting many more features, such as Python interpolation. More info at [2]. [1] https://github.com/SirVer/ultis…
neocomplcache is actively maintained and well documented, not to mention supporting many more features, such as file path completion, register completion, omni completion and Vim completion.
Re: Plugins you should put in your vimrc
#36Note: I have nothing against this blog in particular.. but please, upvoters, try to upvote new stuff.
Re: Plugins you should put in your vimrc
#37I already happen to have these in my setup; if you're a git user I highly recommend fugitive.vim too. https://github.com/tpope/vim-fugitive
Maybe, there is some deeper sense in it that I haven't grasped yet?
Re: Plugins you should put in your vimrc
#38I prefer CtrlP to CommandT, since it does not requires external programs. https://github.com/kien/ctrlp.vim
Granted, Ctrl-P is much slower than Command-T. Won't deny it. But carefully excluding all .git, virtualenv (for python) and similar folders in my .vimrc, along with making sure I cd into a directory a little closer to my code makes it almost as quick for me. And it just works, which is invaluable in my book.
Re: Plugins you should put in your vimrc
#39Every time an article like this comes up, snipMate seems to be mentioned. This particular author even pointed to the old repository which appears unmaintained and has not had a check-in for two years. Where's the love for UltiSnips? [1] UltiSnips is actively maintained and well documented, not to mention supporting many more features, such as Python interpolation. More info at [2]. [1] https://github.com/SirVer/ultis…
Re: Plugins you should put in your vimrc
#40I clicked the article thinking "Please, don't say Surround, Cmd-T, snipmate or Buffer Explorer".. These are amongst the most popular plugins for Vim and every week there are blogs saying exactly the same thing. Note: I have nothing against this blog in particular.. but please, upvoters, try to upvote new stuff.
But, I must say: no matter how repetitive these articles, I pick up something new in the HN comments every single time.