36 37 38 39 40 41 42
# File 'lib/courtier/core_ext.rb', line 36 def tabto(n) if self =~ /^( *)\S/ indent(n - $1.length) else self end end