From 684075f65dae3b140cb9bfe8af50a4480e4e7144 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Thu, 18 Apr 2024 22:25:09 +0900 Subject: [PATCH] templates: use "+" instead of "#" to denote immutable node in ascii graph Maybe it's personal preference, but the hash sign looks bigger compared to the normal "o" nodes, and is slanted. This makes immutable commits stand out too much. I think "+" is closer to the diamond character used in the unicode template. --- cli/src/config/templates.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/config/templates.toml b/cli/src/config/templates.toml index 9c302e0fe8..0e2648e09a 100644 --- a/cli/src/config/templates.toml +++ b/cli/src/config/templates.toml @@ -196,7 +196,7 @@ coalesce( ), coalesce( if(current_working_copy, "@"), - if(immutable, "#"), + if(immutable, "+"), if(conflict, "x"), "o", )