Mercurial > hg
view tests/test-mq-qrename @ 10827:b66388f6adfa
color: don't split colors across lines (which confuses less -R)
Currently, less -R doesn't support colors spanning multiple lines; only
the first line will be colorized.
Instead of allowing colors to span multiple lines, the color extension
now applies colors to each line it receives, even when ui.write() is
given multiple lines in one call.
author | Brodie Rao <brodie@bitheap.org> |
---|---|
date | Fri, 02 Apr 2010 15:22:19 -0500 |
parents | 05a682c8907d |
children | 0c944b7af564 |
line wrap: on
line source
#!/bin/sh echo "[extensions]" >> $HGRCPATH echo "mq=" >> $HGRCPATH hg init a cd a echo 'base' > base hg ci -Ambase -d '1 0' hg qnew -mmqbase mqbase hg qrename mqbase renamed mkdir .hg/patches/foo hg qrename renamed foo hg qseries ls .hg/patches/foo mkdir .hg/patches/bar hg qrename foo/renamed bar hg qseries ls .hg/patches/bar hg qrename bar/renamed baz hg qseries ls .hg/patches/baz cd .. echo % test patch being renamed before committed hg init b cd b hg qinit -c hg qnew x hg qrename y hg qcommit -m rename cd ..