##// END OF EJS Templates
color/progress: subclass ui instead of using wrapfunction (issue2096)...
color/progress: subclass ui instead of using wrapfunction (issue2096) This resolves the issue of hg cmd --mq not being colorized. This was due to color wrapping only the instance of ui passed to dispatch._runcommand(), which isn't the same ui object that mq.mqcommand() receives. After dispatch calls extensions.loadall(), it makes sure any changes to ui.__class__ in uisetup are propagated. progress is updated to wrap ui in the same manner because wrapfunction doesn't play well when ui.__class__ has been replaced by another extension (orig will point to the old class method instead of color's).

File last commit:

r11141:df5d1d57 default
r11555:d8d0fc39 stable
Show More
test-bookmarks-current
59 lines | 824 B | text/plain | TextLexer
/ tests / test-bookmarks-current
#!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "bookmarks=" >> $HGRCPATH
echo "[bookmarks]" >> $HGRCPATH
echo "track.current = True" >> $HGRCPATH
hg init
echo % no bookmarks
hg bookmarks
echo % set bookmark X
hg bookmark X
echo % list bookmarks
hg bookmark
echo % list bookmarks with color
hg --config extensions.color= --config color.mode=ansi \
bookmark --color=always
echo % update to bookmark X
hg update X
echo % list bookmarks
hg bookmarks
echo % rename
hg bookmark -m X Z
echo % list bookmarks
hg bookmarks
echo % new bookmark Y
hg bookmark Y
echo % list bookmarks
hg bookmark
echo % commit
echo 'b' > b
hg add b
hg commit -m'test'
echo % list bookmarks
hg bookmark
echo % delete bookmarks
hg bookmark -d Y
hg bookmark -d Z
echo % list bookmarks
hg bookmark
echo % update to tip
hg update tip