Sometimes when I make coding mistakes I spend a lot of time finding the error.
Is there a plugin which makes Vim underline or highlight PHP, HTML or CSS mistakes?
For instance:
<?php
foreach ($row as $r) {
<echo '<h1>' . $r->title . '</h1>';
}
?>
The '<'
before echo will be highlighted in red.
Vim has HTML correction but I need for PHP and CSS.