We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4f8af commit 7196389Copy full SHA for 7196389
src/main.rs
@@ -476,7 +476,11 @@ fn main() {
476
477
// Now write out the other column values
478
for i in 0..table.columns.len() {
479
- if table.columns[i].hide || table.columns[i].subtable.is_some() { continue; }
+ if table.columns[i].subtable.is_some() { continue; }
480
+ if table.columns[i].hide {
481
+ table.columns[i].value.borrow_mut().clear();
482
+ continue;
483
+ }
484
if i > 0 { table.write("\t"); }
485
if table.columns[i].value.borrow().is_empty() { table.write("\\N"); }
486
else {
0 commit comments