Details
Details
- Reviewers
yuja - Group Reviewers
hg-reviewers - Commits
- rHG1ddd202c47d9: help: allow hiding of help topics
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
Event Timeline
Comment Actions
+def filtertopic(ui, topic):
+ return ui.configbool('help', 'hide.%s' % topic, False)
Maybe we need a separate namespace (e.g. help.hidden-topic.%s)?