Command-T
Today I came across the Command-T plugin for VIM. It provides an easy way to open files from within VIM, similar to TextMate’s “Go to File”.
Installation
:e command-t.vba :so % cd .vim/ruby/command-t/ ruby extconf.rb make
I also set the <Leader> string to , by adding this line to my .vimrc
let mapleader = ","
so I can access Command-T using either ,t or ,b.