Created
August 19, 2013 18:58
-
-
Save mrgcohen/6272721 to your computer and use it in GitHub Desktop.
emacs please switch tabs to spaces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; if indent-tabs-mode is off, untabify before saving | |
(add-hook 'write-file-hooks | |
(lambda () (if (not indent-tabs-mode) | |
(untabify (point-min) (point-max))) | |
nil )) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment