##// END OF EJS Templates
addremove: add associated color for the new labels...
Boris Feld -
r39126:ddc1da13 default
parent child Browse files
Show More
@@ -83,6 +83,8 b' except ImportError:'
83 83 'grep.filename': 'magenta',
84 84 'grep.user': 'magenta',
85 85 'grep.date': 'magenta',
86 'addremove.added': 'green',
87 'addremove.removed': 'red',
86 88 'bookmarks.active': 'green',
87 89 'branches.active': 'none',
88 90 'branches.closed': 'black bold',
@@ -22,7 +22,7 b' Setup'
22 22 > c
23 23 > EOF
24 24 $ hg ci -Am adda
25 adding a
25 \x1b[0;32madding a\x1b[0m (esc)
26 26 $ cat > a <<EOF
27 27 > c
28 28 > c
@@ -218,7 +218,7 b' issue3712: test colorization of subrepo '
218 218 $ hg init sub
219 219 $ echo b > sub/b
220 220 $ hg -R sub commit -Am 'create sub'
221 adding b
221 \x1b[0;32madding b\x1b[0m (esc)
222 222 $ echo 'sub = sub' > .hgsub
223 223 $ hg add .hgsub
224 224 $ hg commit -m 'add subrepo sub'
@@ -168,10 +168,10 b' Make sure ui.formatted=False works'
168 168 $ touch modified removed deleted ignored
169 169 $ echo "^ignored$" > .hgignore
170 170 $ hg ci -A -m 'initial checkin'
171 adding .hgignore
172 adding deleted
173 adding modified
174 adding removed
171 \x1b[0;32madding .hgignore\x1b[0m (esc)
172 \x1b[0;32madding deleted\x1b[0m (esc)
173 \x1b[0;32madding modified\x1b[0m (esc)
174 \x1b[0;32madding removed\x1b[0m (esc)
175 175 $ hg log --color=debug
176 176 [log.changeset changeset.draft|changeset: 0:389aef86a55e]
177 177 [log.tag|tag: tip]
@@ -296,10 +296,10 b" check 'status -q' and some combinations"
296 296 $ touch modified removed deleted ignored
297 297 $ echo "^ignored$" > .hgignore
298 298 $ hg commit -A -m 'initial checkin'
299 adding .hgignore
300 adding deleted
301 adding modified
302 adding removed
299 \x1b[0;32madding .hgignore\x1b[0m (esc)
300 \x1b[0;32madding deleted\x1b[0m (esc)
301 \x1b[0;32madding modified\x1b[0m (esc)
302 \x1b[0;32madding removed\x1b[0m (esc)
303 303 $ touch added unknown ignored
304 304 $ hg add added
305 305 $ echo "test" >> modified
General Comments 0
You need to be logged in to leave comments. Login now