--- a/hgext3rd/topic/__init__.py Wed May 11 16:06:58 2016 +0200
+++ b/hgext3rd/topic/__init__.py Tue Mar 22 14:51:35 2016 -0700
@@ -47,9 +47,9 @@
colortable = {'topic.stack.index': 'yellow',
'topic.stack.state.base': 'dim',
'topic.stack.state.clean': 'green',
- 'topic.stack.index.current': 'cyan', # random pick
- 'topic.stack.state.current': 'cyan bold', # random pick
- 'topic.stack.desc.current': 'cyan', # random pick
+ 'topic.stack.index.current': 'cyan', # random pick
+ 'topic.stack.state.current': 'cyan bold', # random pick
+ 'topic.stack.desc.current': 'cyan', # random pick
'topic.stack.state.unstable': 'red',
}
@@ -182,9 +182,9 @@
listnames=lambda repo: repo.topics))
@command('topics [TOPIC]', [
- ('', 'clear', False, 'clear active topic if any'),
- ('', 'change', '', 'revset of existing revisions to change topic'),
- ('l', 'list', False, 'show the stack of changeset in the topic'),
+ ('', 'clear', False, 'clear active topic if any'),
+ ('', 'change', '', 'revset of existing revisions to change topic'),
+ ('l', 'list', False, 'show the stack of changeset in the topic'),
] + commands.formatteropts)
def topics(ui, repo, topic='', clear=False, change=None, list=False, **opts):
"""View current topic, set current topic, or see all topics."""