Skip to content

Instantly share code, notes, and snippets.

@mrgcohen
Created August 19, 2013 18:58
Show Gist options
  • Save mrgcohen/6272721 to your computer and use it in GitHub Desktop.
Save mrgcohen/6272721 to your computer and use it in GitHub Desktop.
emacs please switch tabs to spaces
;; 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