rails / thor

Thor is a toolkit for building powerful command-line interfaces.
http://whatisthor.com/
MIT License
5.12k stars 553 forks source link

Fix printing tables with borders and indentation #861

Closed p8 closed 11 months ago

p8 commented 1 year ago

When printing tables with borders and indentation the resulting markup was incorrect. Instead of adding the indentation to the format of the first cell, with indent the whole line.

Before:

  +------  +--------  +-------+
|   Name | Number | Color |
|   Erik |      1 | green |
  +------  +--------  +-------+

After

  +------+--------+-------+
  | Name | Number | Color |
  | Erik |      1 | green |
  +------+--------+-------+