Skip to content

Commit aff4ad2

Browse files
authored
fix color values and names mismatch in comments
1 parent cb76868 commit aff4ad2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

vendor/cmder_prompt_config.lua.default

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ prompt_overrideSvnStatusOptIn = false
4848
-- Colors: https://github.com/cmderdev/cmder/wiki/Customization#list-of-colors
4949
-- Effects: https://github.com/cmderdev/cmder/wiki/Customization#list-of-effects
5050
--
51-
-- Green: "\x1b[1;33;49m"
52-
-- Yellow: "\x1b[1;32;49m"
51+
-- Green: "\x1b[1;32;49m"
52+
-- Yellow: "\x1b[1;33;49m"
5353
-- Light Grey: "\x1b[1;30;49m"
5454

5555
-- Prompt Element Colors
56-
uah_color = "\x1b[1;33;49m" -- Green = uah = [user]@[hostname]
57-
cwd_color = "\x1b[1;32;49m" -- Yellow cwd = Current Working Directory
56+
uah_color = "\x1b[1;33;49m" -- Yellow uah = [user]@[hostname]
57+
cwd_color = "\x1b[1;32;49m" -- Green cwd = Current Working Directory
5858
lamb_color = "\x1b[1;30;49m" -- Light Grey = Lambda Color
5959
clean_color = "\x1b[37;1m"
6060
dirty_color = "\x1b[33;3m" -- Yellow, Italic
6161
conflict_color = "\x1b[31;1m" -- Red, Bold
62-
unknown_color = "\x1b[37;1m" -- White = No VCS Status Branch Color
62+
unknown_color = "\x1b[37;1m" -- White, Bold = No VCS Status Branch Color

0 commit comments

Comments
 (0)