Skip to content

Instantly share code, notes, and snippets.

@chopmo
Created January 19, 2012 10:47
Show Gist options
  • Select an option

  • Save chopmo/1639373 to your computer and use it in GitHub Desktop.

Select an option

Save chopmo/1639373 to your computer and use it in GitHub Desktop.
(defun jpt-tabs-to-spaces ()
(interactive)
(save-excursion
(replace-regexp "\t" " " nil 0 (point-max))
(delete-trailing-whitespace)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment