The default print behavior is to have box lines and padding, but I only want to keep the box lines and don't want the padding on the right side. Is it possible to do it?
The default
┌──────────┬──────────┬──────────┐
│ Column 1 │ Column 2 │ Column 3 │
├──────────┼──────────┼──────────┤
│ 1 │ 2 │ 3 │
│ 4 │ 5 │ 6 │
└──────────┴──────────┴──────────┘
expected
┌─────────┬─────────┬─────────┐
│ Column 1│ Column 2│ Column 3│
├─────────┼─────────┼─────────┤
│ 1│ 2│ 3│
│ 4│ 5│ 6│
└─────────┴─────────┴─────────┘