mirror of
https://github.com/atom/atom.git
synced 2026-02-14 00:25:08 -05:00
11 lines
218 B
Ruby
Executable File
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
|