# HG changeset patch # User Christian Ebert # Date 1341399846 -3600 # Node ID eef22f846b0ece944b8dde9a607ddc485748af48 # Parent 3007e5d9eb4e0e2aa2e25739175cfc81dfef17fc# Parent 22b300b7a7c149e0800cf102a927e056b0bdd0db Merge with default diff -r 3007e5d9eb4e -r eef22f846b0e hgkw/keyword.py --- a/hgkw/keyword.py Fri May 18 12:45:47 2012 -0700 +++ b/hgkw/keyword.py Wed Jul 04 12:04:06 2012 +0100 @@ -505,11 +505,18 @@ showfiles += ([f for f in files if f not in kwfiles], [f for f in unknown if f not in kwunknown]) kwlabels = 'enabled deleted enabledunknown ignored ignoredunknown'.split() - kwstates = zip('K!kIi', showfiles, kwlabels) - for char, filenames, kwstate in kwstates: - fmt = (opts.get('all') or ui.verbose) and '%s %%s\n' % char or '%s\n' + kwstates = zip(kwlabels, 'K!kIi', showfiles) + fm = ui.formatter('kwfiles', opts) + fmt = '%.0s%s\n' + if opts.get('all') or ui.verbose: + fmt = '%s %s\n' + for kwstate, char, filenames in kwstates: + label = 'kwfiles.' + kwstate for f in filenames: - ui.write(fmt % repo.pathto(f, cwd), label='kwfiles.' + kwstate) + fm.startitem() + fm.write('kwstatus path', fmt, char, + repo.pathto(f, cwd), label=label) + fm.end() @command('kwshrink', commands.walkopts, _('hg kwshrink [OPTION]... [FILE]...')) def shrink(ui, repo, *pats, **opts):