comparison mercurial/help/config.txt @ 25520:c8fada8d9db9

progress: move config help into core config help This is core feature now.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Wed, 10 Jun 2015 11:56:55 -0700
parents 19fa0cb71cd3
children bde670e58ae0
comparison
equal deleted inserted replaced
25519:09e2cb2a00d7 25520:c8fada8d9db9
1212 Show at most this number of lines of drill-down info after each main entry. 1212 Show at most this number of lines of drill-down info after each main entry.
1213 This can help explain the difference between Total and Inline. 1213 This can help explain the difference between Total and Inline.
1214 Specific to the ``ls`` instrumenting profiler. 1214 Specific to the ``ls`` instrumenting profiler.
1215 Default: 5. 1215 Default: 5.
1216 1216
1217 ``progress``
1218 ------------
1219
1220 Mercurial commands can draw progress bars that are as informative as
1221 possible. Some progress bars only offer indeterminate information, while others
1222 have a definite end point.
1223
1224 ``delay``
1225 Number of seconds (float) before showing the progress bar. (default: 3)
1226
1227 ``changedelay``
1228 Minimum delay before showing a new topic. When set to less than 3 * refresh,
1229 that value will be used instead. (default: 1)
1230
1231 ``refresh``
1232 Time in seconds between refreshes of the progress bar. (default: 0.1)
1233
1234 ``format``
1235 Format of the progress bar.
1236
1237 Valid entries for the format field are ``topic``, ``bar``, ``number``,
1238 ``unit``, ``estimate``, speed, and item. item defaults to the last 20
1239 characters of the item, but this can be changed by adding either ``-<num>``
1240 which would take the last num characters, or ``+<num>`` for the first num
1241 characters.
1242
1243 (default: Topic bar number estimate)
1244
1245 ``width``
1246 If set, the maximum width of the progress information (that is, min(width,
1247 term width) will be used)
1248
1249 ``clear-complete``
1250 clear the progress bar after it's done (default to True)
1251
1252 ``disable``
1253 If true, don't show a progress bar
1254
1255 ``assume-tty``
1256 If true, ALWAYS show a progress bar, unless disable is given
1257
1217 ``revsetalias`` 1258 ``revsetalias``
1218 --------------- 1259 ---------------
1219 1260
1220 Alias definitions for revsets. See :hg:`help revsets` for details. 1261 Alias definitions for revsets. See :hg:`help revsets` for details.
1221 1262