Textmate Ruby Macro Comma Separated List to Line
Textmate Ruby Macro Comma Separated List to Line
#!/usr/bin/env ruby -wKU
STDIN.read.split(",").each {|e| print e+"\n"}
#Set Save "Nothing"
#Set Input "Selected Text" or "Character"
# and
#Set Output "Replace Selected Text"
#!/usr/bin/env ruby -wKU
STDIN.read.split(",").each {|e| print e+"\n"}
#Set Save "Nothing"
#Set Input "Selected Text" or "Character"
# and
#Set Output "Replace Selected Text"
Comments