"Error detected while processing of Syntax Autocommands
E484: can't open file /usr/share/vim/vim71/syntax/mason.vim"
/usr/share/vim/vim71/ doesn't exist anymore on my machine,
but I don't get the error with other filetypes. The error
is not anywhere in ~/.vim/, as far as I can tell.
Doing ln -s /usr/share/vim/vim72/ /usr/share/vim/vim71/
"fixes" the problem, but I guess there is a proper way,
and a real error somewhere with something specifically
naming /usr/share/vim/vim71/ when it shouldn't.
How can I find out?
/BP 8^)>
--
Benct Philip Jonsson -- melroch atte melroch dotte se
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"C'est en vain que nos Josu�s litt�raires crient
� la langue de s'arr�ter; les langues ni le soleil
ne s'arr�tent plus. Le jour o� elles se *fixent*,
c'est qu'elles meurent." (Victor Hugo)
I would start with
grep -R vim71 ~/.vimrc ~/.vim
If that doesn't help, then try setting 'verbose' to some appropriate
value, execute ":set filetype=mason", and see what command causes
the error. See
:help 'verbose'
HTH,
Gary
Thanks!
For some reason I forgot to grep for vim71 in ~/.vimrc,
and indeed there was a culprit -- an autocommand which
apparently could be commented out without consequences.
/BP