##// END OF EJS Templates
keyword: make kwfiles --all show unknown files too...
Christian Ebert -
r9492:3b1864bc default
parent child Browse files
Show More
@@ -248,7 +248,8 b' def _status(ui, repo, kwt, *pats, **opts'
248 '''Bails out if [keyword] configuration is not active.
248 '''Bails out if [keyword] configuration is not active.
249 Returns status of working directory.'''
249 Returns status of working directory.'''
250 if kwt:
250 if kwt:
251 unknown = opts.get('unknown') or opts.get('untracked')
251 unknown = (opts.get('unknown') or opts.get('all')
252 or opts.get('untracked'))
252 return repo.status(match=cmdutil.match(repo, pats, opts), clean=True,
253 return repo.status(match=cmdutil.match(repo, pats, opts), clean=True,
253 unknown=unknown)
254 unknown=unknown)
254 if ui.configitems('keyword'):
255 if ui.configitems('keyword'):
General Comments 0
You need to be logged in to leave comments. Login now