Mercurial > hg
changeset 9494:bdd8a41ea6f6
keyword: uppercase short option for kwfiles --all, like hg status -A
Deprecate kwfiles -a.
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Thu, 01 Oct 2009 00:00:18 +0200 |
parents | fe1ecd15c6bd |
children | e2fd9b62349b |
files | hgext/keyword.py |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/keyword.py Wed Sep 30 23:59:03 2009 +0200 +++ b/hgext/keyword.py Thu Oct 01 00:00:18 2009 +0200 @@ -382,7 +382,7 @@ See "hg help keyword" on how to construct patterns both for inclusion and exclusion of files. - With -a/--all and -v/--verbose the codes used to show the status + With -A/--all and -v/--verbose the codes used to show the status of files are:: K = keyword expansion candidate @@ -549,9 +549,11 @@ _('hg kwexpand [OPTION]... [FILE]...')), 'kwfiles': (files, - [('a', 'all', None, _('show keyword status flags of all files')), + [('A', 'all', None, _('show keyword status flags of all files')), ('i', 'ignore', None, _('show files excluded from expansion')), ('u', 'unknown', None, _('only show unknown (not tracked) files')), + ('a', 'all', None, + _('show keyword status flags of all files (DEPRECATED)')), ('u', 'untracked', None, _('only show untracked files (DEPRECATED)')), ] + commands.walkopts, _('hg kwfiles [OPTION]... [FILE]...')),