Method: Textbringer::Buffer#indent_to
- Defined in:
- lib/textbringer/buffer.rb
#indent_to(column) ⇒ Object
1265 1266 1267 1268 1269 1270 1271 1272 |
# File 'lib/textbringer/buffer.rb', line 1265 def indent_to(column) s = if self[:indent_tabs_mode] "\t" * (column / self[:tab_width]) + " " * (column % self[:tab_width]) else " " * column end insert(s) end |