Mac Vim Speed Tips

Today I spent a few minutes making things better for myself with MacVim.

First, I upgraded to snapshot 52 of MacVim. There hasn’t been a stable release of MacVim since 2008, but development is ongoing. There are about 2 years of MacVim development that you can take advantage of if you use the snapshots.

Snapshot 52 was released in March 2010 makes rendering a lot faster, and also includes an even faster experimental rendering mode, but this did anti-aliasing which I didn’t like so I didn’t use it.

If you use the stable version of MacVim, then you are no doubt aware how slow the rendering is. Highly worth it to upgrade!

Second, I got the PeepOpen application and added:

1
2
3
4
5
6
7

"""""""""""""""""""""""""""""""""""""""""""""""""
" PeepOpen                                      "
" Project search                               "
"""""""""""""""""""""""""""""""""""""""""""""""""
map <leader>t :PeepOpen<CR>

to my .vimrc

These two changes make opening files about 100x faster due to faster rendering and faster search. Fuzzyfinder textmate was bugging me due to issues with 1.9.2 I think, as well as a extreme slowness in a my rather large application.

August 05, 2010