equal
deleted
inserted
replaced
366 |
366 |
367 Useful to prevent inadvertent keyword expansion and to speed up |
367 Useful to prevent inadvertent keyword expansion and to speed up |
368 execution by including only filenames that are actual candidates |
368 execution by including only filenames that are actual candidates |
369 for expansion. |
369 for expansion. |
370 |
370 |
371 Use "hg kwfiles -u" to display untracked filenames as well. |
371 Use -u/--untracked to display untracked filenames as well. |
372 ''' |
372 ''' |
373 kwt = kwtools['templater'] |
373 kwt = kwtools['templater'] |
374 status = _status(ui, repo, kwt, opts.get('untracked'), *pats, **opts) |
374 status = _status(ui, repo, kwt, opts.get('untracked'), *pats, **opts) |
375 modified, added, removed, deleted, unknown, ignored, clean = status |
375 modified, added, removed, deleted, unknown, ignored, clean = status |
376 files = sorted(modified + added + clean + unknown) |
376 files = sorted(modified + added + clean + unknown) |