Skip to content

Instantly share code, notes, and snippets.

@Mon-Ouie
Created May 6, 2013 04:04
Show Gist options
  • Save Mon-Ouie/5523296 to your computer and use it in GitHub Desktop.
Save Mon-Ouie/5523296 to your computer and use it in GitHub Desktop.
(defun indent-buffer ()
(interactive)
(indent-region (point-min) (point-max)))
(defun indent-region-or-buffer ()
(interactive)
(if (use-region-p) (indent-region (region-beginning) (region-end))
(indent-buffer)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment