Nov
8th
Tue
8th
Vim’s Fugitive’s “Error detected while processing function <SNR>51_Commit”
At a random time on my development cycle, I was using the awesome Fugitive plugin developed by Tim Pope, and I got the following strange error:
Error detected while processing function 51_Commit:
line 52:
E480: No match: `=msgfile`
Press ENTER or type command to continue
After some googling, I found out the reason was that I installed just a few days ago the also awesome ctrlp plugin. When you were setting up ctrlp, you did something like this:
set wildignore=*/.git/*,*/.hg/*,*/dist/*,*/cabal-dev/*
Well… it seems Fugitive plugin doesn’t like that very much, if you remove the git portion from that setting, Fugitive will work as expected again
Thanks Interwebz
