Show tabs in PHP code

This commit is contained in:
Tom Willemse 2014-11-10 20:52:17 +01:00
parent 305e838383
commit b0a9184283

View file

@ -1100,6 +1100,20 @@
(add-hook 'php-mode-hook #'electric-indent-local-mode)
#+END_SRC
*** Show tabs and spaces in indent
I'm working with some WordPress plugins nowadays and their style
guide insists on using tabs, not spaces... I'd like to know that
I'm following this rule.
#+BEGIN_SRC emacs-lisp
(defun oni:enable-whitespace-for-php ()
(setq whitespace-style '(face tabs tab-mark))
(whitespace-mode))
(add-hook 'php-mode-hook #'oni:enable-whitespace-for-php)
#+END_SRC
* Load custom file
I don't really use the Emacs customization interface much, but I