~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2005-05-05 02:46:17 UTC
  • Revision ID: mbp@sourcefrog.net-20050505024617-7cb062c7d6c5fef9
- Add vim and RCS ignorefile patterns

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
DEFAULT_IGNORE = ['.bzr.log',
30
30
                  '*~', '#*#', '*$', '.#*',
 
31
                  '.*.swp', '.*.tmp',
31
32
                  '*.tmp', '*.bak', '*.BAK', '*.orig',
32
33
                  '*.o', '*.obj', '*.a', '*.py[oc]', '*.so', '*.exe', '*.elc', 
33
34
                  '{arch}', 'CVS', '.svn', '_darcs', 'SCCS', 'RCS',
 
35
                  '*,v',
34
36
                  'BitKeeper',
35
37
                  'TAGS', '.make.state', '.sconsign', '.tmp*']
36
38