From 5b9f422d1dd81d32d373acc5443676bf8060a5f0 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Thu, 15 Feb 2024 21:41:23 +0900 Subject: [PATCH] cli: change workspace@ symbol color to green (the color of HEAD@git) I think it makes sense because workspace@ is similar to HEAD@git. They are symbols that aren't branches nor tags. --- cli/src/config/colors.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/config/colors.toml b/cli/src/config/colors.toml index a9fde23526..08923ccf23 100644 --- a/cli/src/config/colors.toml +++ b/cli/src/config/colors.toml @@ -19,7 +19,7 @@ "email" = "yellow" "username" = "yellow" "timestamp" = "cyan" -"working_copies" = "magenta" +"working_copies" = "green" "branch" = "magenta" "branches" = "magenta" "local_branches" = "magenta" @@ -45,7 +45,7 @@ # https://github.com/martinvonz/jj/issues/528 "working_copy email" = "yellow" "working_copy timestamp" = "bright cyan" -"working_copy working_copies" = "bright magenta" +"working_copy working_copies" = "bright green" "working_copy branch" = "bright magenta" "working_copy branches" = "bright magenta" "working_copy local_branches" = "bright magenta"