diff options
| author | Thomas Otto <th1000s@posteo.net> | 2022-01-19 01:33:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-18 19:33:09 -0500 |
| commit | 3aed51cdc120cae73628fcce511c9124614f5e51 (patch) | |
| tree | fef6f685d3d2d7fabfa80a92295b7f91c3a2e58e /src/cli.rs | |
| parent | 7d8533c9845275ecb5aee6524316be6b81dea76b (diff) | |
Center Align numbers right-ish (#883)
There is no such thing as "Center Align" with discrete terminal cells. In
some cases a decision has to be made whether to use the left or the right
cell, e.g. when centering one char in 4 cells: "_X__" or "__X_".
The format!() center/^ default is left, but when padding numbers these
are now aligned to the right if required. Strings remain left-aligned.
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -162,9 +162,9 @@ To display line numbers, use --line-numbers. Line numbers are displayed in two columns. Here's what it looks like by default: - 1 ⋮ 1 │ unchanged line - 2 ⋮ │ removed line - ⋮ 2 │ added line + 1 ⋮ 1 │ unchanged line + 2 ⋮ │ removed line + ⋮ 2 │ added line In that output, the line numbers for the old (minus) version of the file appear in the left column, and the line numbers for the new (plus) version of the file appear in the right column. In an |
