Mercurial > hg
view tests/test-debugcomplete @ 10948:61cd6653f846 stable
diffstat: use ui.plain() instead of ui.interactive()
Previously, a default width of 80 is used for non-interactive
sessions. This behaviour was introduced before HGPLAIN was supported.
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Thu, 15 Apr 2010 18:52:59 +0200 |
parents | 7ca2be800804 |
children |
line wrap: on
line source
#!/bin/sh echo '% Show all commands except debug commands' hg debugcomplete echo echo '% Show all commands that start with "a"' hg debugcomplete a echo echo '% Do not show debug commands if there are other candidates' hg debugcomplete d echo echo '% Show debug commands if there are no other candidates' hg debugcomplete debug echo echo '% Do not show the alias of a debug command if there are other candidates' echo '% (this should hide rawcommit)' hg debugcomplete r echo echo '% Show the alias of a debug command if there are no other candidates' hg debugcomplete rawc echo echo '% Show the global options' hg debugcomplete --options | sort echo echo '% Show the options for the "serve" command' hg debugcomplete --options serve | sort echo echo '% Show an error if we use --options with an ambiguous abbreviation' hg debugcomplete --options s echo echo '% Show all commands + options' hg debugcommands exit 0