hgext/keyword.py
changeset 9195 8c719222ddd7
parent 9157 9261667e9b82
child 9219 3f650f6aa130
equal deleted inserted replaced
9194:0de7cf8db5fd 9195:8c719222ddd7
   370     exclusion of files.
   370     exclusion of files.
   371 
   371 
   372     Use -u/--untracked to list untracked files as well.
   372     Use -u/--untracked to list untracked files as well.
   373 
   373 
   374     With -a/--all and -v/--verbose the codes used to show the status of files
   374     With -a/--all and -v/--verbose the codes used to show the status of files
   375     are:
   375     are::
   376     K = keyword expansion candidate
   376 
   377     k = keyword expansion candidate (untracked)
   377       K = keyword expansion candidate
   378     I = ignored
   378       k = keyword expansion candidate (untracked)
   379     i = ignored (untracked)
   379       I = ignored
       
   380       i = ignored (untracked)
   380     '''
   381     '''
   381     kwt = kwtools['templater']
   382     kwt = kwtools['templater']
   382     status = _status(ui, repo, kwt, opts.get('untracked'), *pats, **opts)
   383     status = _status(ui, repo, kwt, opts.get('untracked'), *pats, **opts)
   383     modified, added, removed, deleted, unknown, ignored, clean = status
   384     modified, added, removed, deleted, unknown, ignored, clean = status
   384     files = sorted(modified + added + clean)
   385     files = sorted(modified + added + clean)