ph (owner)

Fork Of

gist: 227361 by defunkt Reduce your carbon footprint

Revisions

gist: 227406 Download_button fork
public
Public Clone URL: git://gist.github.com/227406.git
Embed All Files: show embed
carbon.md #

Vim

autocmd BufWritePre * :%s/\s\+$//e

Emacs

(add-hook 'before-save-hook 'delete-trailing-whitespace)

Textmate

http://blogobaggins.com/2009/03/31/waging-war-on-whitespace.html

In your existing codebase

find . -name '*.rb' | xargs perl -pi -e 's/ +$//'