hgext/keyword.py
changeset 6157 09b00faa8670
parent 6117 c74f1d9092f8
child 6211 f89fd07fc51d
equal deleted inserted replaced
6156:ba0790061ba7 6157:09b00faa8670
    86 import re, shutil, tempfile, time
    86 import re, shutil, tempfile, time
    87 
    87 
    88 commands.optionalrepo += ' kwdemo'
    88 commands.optionalrepo += ' kwdemo'
    89 
    89 
    90 # hg commands that do not act on keywords
    90 # hg commands that do not act on keywords
    91 nokwcommands = ('add addremove bundle copy export grep identify incoming init'
    91 nokwcommands = ('add addremove bundle copy export grep incoming init'
    92                 ' log outgoing push remove rename rollback tip'
    92                 ' log outgoing push rename rollback tip'
    93                 ' convert email glog')
    93                 ' convert email glog')
    94 
    94 
    95 # hg commands that trigger expansion only when writing to working dir,
    95 # hg commands that trigger expansion only when writing to working dir,
    96 # not when reading filelog, and unexpand when reading from working dir
    96 # not when reading filelog, and unexpand when reading from working dir
    97 restricted = 'record qfold qimport qnew qpush qrefresh qrecord'
    97 restricted = 'record qfold qimport qnew qpush qrefresh qrecord'