I have built the latest MacVim (snapshot 45) with Python 2.5.4 from http://www.python.org and put it here. Since I do builds of new snapshots for myself I will share them here if there is any interest.
You can download MacVim + Python 2.5 here: MacVim (snapshot 47)
Archive for the 'Vim' Category
MacVim with Python 2.5
June 23, 2009VIM: ack instead of grep
April 23, 2009I much prefer ack to the standard grep – it’s way better. If you are curious why – just open the ack page.
Replacing grep with ack in VIM is pretty easy: set grepprg=ack. But there’s a catch – ack does not output columns for search results, making search result navigation a nightmare – on each [...]
VIM: updating ctags file automatically
March 6, 2009Most VIM developers use ctags for browsing the code. It is quite annoying to refresh the tags manually though. I forget to do this all the time – and suddenly navigation breaks.
Recently I have stumbled upon a great VIM plugin, simple and brilliant: AutoTag, http://www.vim.org/scripts/script.php?script_id=1343. This little thing updates your tags automatically on each buffer [...]
