Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@baron
Created December 29, 2010 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baron/758323 to your computer and use it in GitHub Desktop.
Save baron/758323 to your computer and use it in GitHub Desktop.
(defun ib ()
"indent whole buffer"
(interactive)
(delete-trailing-whitespace)
(indent-region (point-min) (point-max) nil)
(untabify (point-min) (point-max)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment