Files
atom/bundles/ruby.tmbundle/Support/bin/snippet_paren.rb
Corey Johnson & Nathan Sobo f84f9c5dd2 Add bundles and themes
2012-08-27 13:20:22 -07:00

11 lines
218 B
Ruby
Executable File

#!/usr/bin/env ruby -wKU
minimize = ENV["TM_MINIMIZE_PARENS"].to_s =~ /\byes\b/i
case ARGV.shift.to_s =~ /\bend\b/i ? :end : :start
when :start
print(minimize ? " " : "(")
when :end
print ")" unless minimize
end