mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-12 17:08:39 -09:00
Revert default --graph-style to "hash"
Because, even in 2022, there are systems where the libc locale is not, in fact, UTF-8. Fixes #186.
This commit is contained in:
parent
1a3de55e68
commit
3942722eba
2 changed files with 3 additions and 3 deletions
4
ncdu.pod
4
ncdu.pod
|
|
@ -230,8 +230,8 @@ the browser with the 'g' key.
|
||||||
=item B<--graph-style> I<OPTION>
|
=item B<--graph-style> I<OPTION>
|
||||||
|
|
||||||
Change the way that the relative size bar column is drawn. Recognized values
|
Change the way that the relative size bar column is drawn. Recognized values
|
||||||
are I<hash> to draw ASCII C<#> characters (most portable), I<half-block> to use
|
are I<hash> to draw ASCII C<#> characters (default and most portable),
|
||||||
half-block drawing characters (the default) or I<eighth-block> to use
|
I<half-block> to use half-block drawing characters or I<eighth-block> to use
|
||||||
eighth-block drawing characters. Eighth-block characters are the most precise
|
eighth-block drawing characters. Eighth-block characters are the most precise
|
||||||
but may not render correctly in all terminals.
|
but may not render correctly in all terminals.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,7 @@ pub const config = struct {
|
||||||
pub var show_mtime: bool = false;
|
pub var show_mtime: bool = false;
|
||||||
pub var show_graph: bool = true;
|
pub var show_graph: bool = true;
|
||||||
pub var show_percent: bool = false;
|
pub var show_percent: bool = false;
|
||||||
pub var graph_style: enum { hash, half, eighth } = .half;
|
pub var graph_style: enum { hash, half, eighth } = .hash;
|
||||||
pub var sort_col: SortCol = .blocks;
|
pub var sort_col: SortCol = .blocks;
|
||||||
pub var sort_order: SortOrder = .desc;
|
pub var sort_order: SortOrder = .desc;
|
||||||
pub var sort_dirsfirst: bool = false;
|
pub var sort_dirsfirst: bool = false;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue