Joined September 2012
· Posted to Compile command-t vim plugin with homebrew and macvim over 1 year ago
You could also use Ctrl-P instead of Command-T; It's the same functionality in pure vimscript.
https://github.com/kien/ctrlp.vim
Posted to Vim: Edit Files that Grep finds over 1 year ago
You know whats even faster, searching through files that are already indexed!
git grep -l 'pattern' | xargs vim
Achievements
58 Karma
881 Total ProTip Views

Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos

Forked
Have a project valued enough to be forked by someone else

Mongoose
Have at least one original repo where Ruby is the dominant language

Velociraptor
Have at least one original repo where Perl is the dominant language

Charity
Fork and commit to someone's open source project in need
I use vim and a 'smart' alias https://coderwall.com/p/fc8edq . You could use fugitive.vim and call
:Gdiff
once its opened to get the same three way split, but I prefer the default file diff view git provides.