Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[freqtbl-] Default disp_histogram to U+25A0 BLACK SQUARE (■) #1949

Merged
merged 2 commits into from
Jul 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion visidata/freqtbl.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from visidata.pivot import PivotSheet, PivotGroupRow


vd.option('disp_histogram', '*', 'histogram element character')
vd.option('disp_histogram', '', 'histogram element character')
vd.option('histogram_bins', 0, 'number of bins for histogram of numeric columns')
vd.option('numeric_binning', False, 'bin numeric columns into ranges', replay=True)

Expand Down
3 changes: 2 additions & 1 deletion visidata/themes/ascii8.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,6 @@
disp_menu_push='+',
disp_menu_input='_',
disp_menu_fmt='7-bit ASCII 3-bit color',
plot_colors = 'white'
plot_colors = 'white',
disp_histogram='*'
)