# HG changeset patch # User Christian Ebert # Date 1202393617 -3600 # Node ID c27209bf8385c84a3f79ee730a9bb7f4ebaf1d82 # Parent e93c63004ec292c542dd0c01c71e99f71fa703e6 Ignore everything starting with .hg Tough luck for those who want keywords in .hgignore ;) diff -r e93c63004ec2 -r c27209bf8385 hgkw/keyword.py --- a/hgkw/keyword.py Thu Feb 07 10:32:05 2008 +0100 +++ b/hgkw/keyword.py Thu Feb 07 15:13:37 2008 +0100 @@ -431,7 +431,7 @@ except AttributeError: pass - inc, exc = [], ['.hgtags', '.hg_archival.txt'] + inc, exc = [], ['.hg*'] for pat, opt in ui.configitems('keyword'): if opt != 'ignore': inc.append(pat)