TextMate - Convert Tabs to 2 Spaces and Strip Whitespace
I only ever use 2 spaces so i've gone with that.
1 2 #!/usr/bin/env ruby 3 4 STDIN.read.each do |line| 5 line.sub!(/^(\t+)/) { |c| ' ' * c.length } 6 line.sub!(/(\s+)$/, "\n") 7 puts line 8 end 9