feat: update default list format to match new configuration

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-29 14:39:12 -03:00
parent 7ae2a3919f
commit 8900f9b93e

View File

@@ -204,33 +204,45 @@ impl Settings {
settings.list_format = vec![
ColumnConfig {
name: "id".to_string(),
label: "id".to_string(),
align: ColumnAlignment::Left,
max_len: Some("8".to_string()),
label: "Item".to_string(),
align: ColumnAlignment::Right,
max_len: None,
},
ColumnConfig {
name: "time".to_string(),
label: "time".to_string(),
align: ColumnAlignment::Left,
max_len: Some("19".to_string()),
label: "Time".to_string(),
align: ColumnAlignment::Right,
max_len: None,
},
ColumnConfig {
name: "size".to_string(),
label: "size".to_string(),
align: ColumnAlignment::Left,
max_len: Some("10".to_string()),
label: "Size".to_string(),
align: ColumnAlignment::Right,
max_len: None,
},
ColumnConfig {
name: "meta:text_line_count".to_string(),
label: "Lines".to_string(),
align: ColumnAlignment::Right,
max_len: None,
},
ColumnConfig {
name: "tags".to_string(),
label: "tags".to_string(),
label: "Tags".to_string(),
align: ColumnAlignment::Left,
max_len: Some("20".to_string()),
max_len: Some("40".to_string()),
},
ColumnConfig {
name: "meta:hostname".to_string(),
label: "hostname".to_string(),
name: "meta:hostname_short".to_string(),
label: "Host".to_string(),
align: ColumnAlignment::Left,
max_len: Some("15".to_string()),
max_len: Some("28".to_string()),
},
ColumnConfig {
name: "meta:command".to_string(),
label: "Command".to_string(),
align: ColumnAlignment::Left,
max_len: Some("100".to_string()),
},
];
}