VIM is unable to highlight PHP files or indent it (using '='). It is working fine for other file types (.html, .c, .java etc.)

I tried manually setting filetype/syntax without any results.

What should I do?

OS: Ubuntu 11.04 VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Oct 6 2011 10:34:41) Included patches: 1-154

Should I give more information?

PS: php.vim file is present in syntax folder.

link|improve this question
feedback

3 Answers

I'm not sure what would cause this issue but try adding below to .vimrc

au BufNewFile,BufRead *.php set filetype=php
link|improve this answer
I tried this... no results :( – chinmayv Nov 16 '11 at 13:10
feedback

I'm using following vimrc lines:

filetype plugin on
au BufNewFile,BufRead *.endfile set filetype=endfile
filetype plugin indent on

The part with endlife helps for css, html and php files for example and for javascript I added:

au BufRead,BufNewFile jquery.*.js set ft=javascript syntax=jquery

I hope that will help you.

link|improve this answer
No results from this :( – chinmayv Nov 16 '11 at 13:10
Can you please show us your vimrc file? Another question would be to trigger syntax on. Maybe it is disabled for php by default whatsoever. You said that you have <?php at the beginning. No offense, but do you have ?> at the end as well? – Thikron Nov 16 '11 at 15:45
Here is the link to my .vimrc file pastebin.com/caJfK8Dr I tried both, with and without ?>. And it should not make any difference – chinmayv Nov 17 '11 at 5:15
Hi, i tried your vimrc file and the highlighting works fine. Only your tab ist awkward, but maybe you want it that way. I don't have your colorscheme so I haven't tested it. Maybe it is broken? – Thikron Nov 17 '11 at 10:37
Thanks... I will change colorscheme and check. And i know tab is awkward :(. I have to fix it... didn't get time :P. – chinmayv Nov 17 '11 at 19:50
feedback

The default syntax plugin for PHP requires to include <?php at the beginning of the file to highlight anything. Was bit of a gotcha at beginning :)

link|improve this answer
I have <?php at the beginning of file. Still its not working – chinmayv Nov 16 '11 at 13:12
Sorry to hear.. – progo Nov 16 '11 at 13:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.