Skip to content

Instantly share code, notes, and snippets.

@tcrayford
Created June 21, 2010 13:48
Show Gist options
  • Save tcrayford/446870 to your computer and use it in GitHub Desktop.
Save tcrayford/446870 to your computer and use it in GitHub Desktop.
(defun untabify-buffer ()
(interactive)
(untabify (point-min) (point-max)))
(defun indent-buffer ()
(interactive)
(indent-region (point-min) (point-max)))
(defun cleanup-buffer ()
"Perform a bunch of operations on the whitespace content of a buffer."
(interactive)
(indent-buffer)
(untabify-buffer)
(delete-trailing-whitespace))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment