From 8af59d0b3f970daad438e5ac47695a1db082aa09 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Fri, 29 Aug 2025 14:39:53 -0300 Subject: [PATCH] fix: reduce hostname_short max length to 14 Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 7141297..61e2d31 100644 --- a/src/config.rs +++ b/src/config.rs @@ -236,7 +236,7 @@ impl Settings { name: "meta:hostname_short".to_string(), label: "Host".to_string(), align: ColumnAlignment::Left, - max_len: Some("28".to_string()), + max_len: Some("14".to_string()), }, ColumnConfig { name: "meta:command".to_string(),