exa/column.rs
Ben S 10b8f6f414 Split source out into multiple files
Also, reverse the way columns are rendered: before, a column took a stat and a name to render; now, a file takes a column type to render. This means that most of the File data/methods can be private.
2014-05-04 21:33:14 +01:00

14 lines
198 B
Rust

pub enum Column {
Permissions,
FileName,
FileSize(bool),
}
pub fn defaultColumns() -> ~[Column] {
return ~[
Permissions,
FileSize(false),
FileName,
];
}