comparison mercurial/dispatch.py @ 35223:4edd2202f7d7

dispatch: alias --repo to --repository while parsing early options This prepares for replacing old _early*opt() functions. My initial attempt was to extend options table to support 'repository|repo' syntax. It worked, but seemed too invasive. So I decided to add an optional argument to fancyopts() instead. This also changes the nevernegate dict to be keyed by a canonical_name, not by an option-name for clarity.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 25 Nov 2017 17:03:52 +0900
parents aef2b98d9352
children 6e6d0a5b88e6
comparison
equal deleted inserted replaced
35222:66c11a66ad1a 35223:4edd2202f7d7
647 return configs 647 return configs
648 648
649 def _earlyparseopts(args): 649 def _earlyparseopts(args):
650 options = {} 650 options = {}
651 fancyopts.fancyopts(args, commands.globalopts, options, 651 fancyopts.fancyopts(args, commands.globalopts, options,
652 gnu=False, early=True) 652 gnu=False, early=True,
653 optaliases={'repository': ['repo']})
653 return options 654 return options
654 655
655 def _earlygetopt(aliases, args, strip=True): 656 def _earlygetopt(aliases, args, strip=True):
656 """Return list of values for an option (or aliases). 657 """Return list of values for an option (or aliases).
657 658