Skip to content

Instantly share code, notes, and snippets.

@v2e4lisp
Created March 17, 2013 06:53
Show Gist options
  • Save v2e4lisp/5180434 to your computer and use it in GitHub Desktop.
Save v2e4lisp/5180434 to your computer and use it in GitHub Desktop.
(defun delete-trailing-whitespace-current-buffer ()
(interactive)
(let ((pos (point)))
(replace-regexp "\\(.\\)[ \t]+$" "\\1")
(goto-char pos)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment