I am having the same problem as many others it seems, as I am getting an error when the ftplugin file is called. How do I fix this? Where do I add the contents into matchit.vim file as leptogenesis did to make the code work?
Comment only
20 Sep 2012
Editing Matlab files in Vim
Edit Matlab M-files in Vim editor (indentation, syntax highlighting, tags , mlint support)
Nice job on these plugins! However, I had the same problem as john--I had to add the contents of ftplugin/matlab.vim to matchit.vim to make the ftplugin work on one of my systems (linux).
More importantly, though, the mlint integration seems almost useless because you have to scroll through every stupid warning mlint spits out to find the true errors. Is there a way to make it only report things that would actually prevent the program from running? (e.g. missing 'end' statements, unmatched parens, etc)
Comment only
15 Jan 2012
Editing Matlab files in Vim
Edit Matlab M-files in Vim editor (indentation, syntax highlighting, tags , mlint support)
Matching if/end and for/end blocks did not work for me. I ended up using matchit.vim directly to set these myself, and getting Matlab syntax highlighting as part of a larger set of syntax highlighting for other languages. The installation instructions should be improved/clarified, and possibly fixed, as they don't work on an out-of-the-box vim install (on Mac Snow Leopard).
2
11 Aug 2011
Editing Matlab files in Vim
Edit Matlab M-files in Vim editor (indentation, syntax highlighting, tags , mlint support)
Thanks for the reply Robert. I had tried that before with no success. What ended up fixing it was running dos2unix (fromdos in Ubuntu) on the file. :%s/^M/\r/g has always worked for me in the past, so that was why I was confused by this. Thanks for your help.
Ben
Comment only