I am using Emacs with php-mode.el: http://php-mode.sourceforge.net/php-mode.el.html
I have the following lines in my .emacs file:
(load-file "~/.emacs.d/php-mode.el")
(require 'php-mode)
(setq c-default-style "linux" c-basic-offset 4)
It is working really nicely for the most part. The issue is that for certain bits of code Emacs displays the code differently to other editors. For example, I have the following code in Emacs:
public function showStuff($items, $Stuff) {
$restrict = true;
$stuff = false;
$moreStuff = true;
if (($restrict && $stuff >= $moreStuff)
|| ( $moreStuff > 10)) {
return true;
}
return false;
}
But viewing the same file in Eclipse/Sublime Text/Text Wrangler looks like:
public function showStuff($items, $Stuff) {
$restrict = true;
$stuff = false;
$moreStuff = true;
if (($restrict && $stuff >= $moreStuff)
|| ( $moreStuff > 10)) {
return true;
}
return false;
}
Can anyone comment on why I am seeing these results and a possible solution?
Thanks.
\t) for indentation of the if-block, which Emacs indents like 8 spaces and other Editors indent like 4 spaces. Could you verify that? – Thomas Sep 3 '12 at 23:49M-x whitespace-mode RETwill show you whether you are mixing tabs and spaces for your indentation. – phils Sep 4 '12 at 0:46M-x whitespace-mode RETand it shows that I am using a combination of spaces and tabs but I am not sure what this means or how I can correct the problem. Do you have any more advice? – Tom Kadwill Sep 4 '12 at 8:23