Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CVertex/983096 to your computer and use it in GitHub Desktop.
Save CVertex/983096 to your computer and use it in GitHub Desktop.
Convert Tabs to Spaces and strip whitespaces - Text Mate Command
#!/usr/bin/env ruby
STDIN.read.each do |line|
line.sub!(/^(\t+)/) { |c| ' ' * c.length }
line.sub!(/(\s+)$/, "\n")
puts line
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment