Ich habe Probleme mit meinem PHP-Code, der nicht richtig eingerückt ist...
Ich möchte, dass mein Code wie folgt aussieht
if (foo)
{
print "i am indented";
}
aber es sieht immer so aus:
if (foo)
{
print "i am not indented correctly";
}
Ich war es leid, nach ähnlichen Dingen zu googeln, und habe versucht, das Folgende zu meinem .emacs hinzuzufügen, aber es hat überhaupt nicht funktioniert.
Haben Sie eine Idee?
(add-hook 'php-mode-hook
(function (lambda ()
;; GNU style
(setq php-indent-level 4
php-continued-statement-offset 4
php-continued-brace-offset 0
php-brace-offset 0
php-brace-imaginary-offset 0
php-label-offset -4))))