comparison mercurial/ui.py @ 41493:97ab4cbb342e

tweakdefaults: set ui.relative-paths instead of command.status.relative Differential Revision: https://phab.mercurial-scm.org/D5775
author Martin von Zweigbergk <martinvonz@google.com>
date Wed, 30 Jan 2019 16:14:39 -0800
parents 7f366dd3df1f
children aaad36b88298
comparison
equal deleted inserted replaced
41492:02186c6871ac 41493:97ab4cbb342e
56 rollback = False 56 rollback = False
57 # Make `hg status` report copy information 57 # Make `hg status` report copy information
58 statuscopies = yes 58 statuscopies = yes
59 # Prefer curses UIs when available. Revert to plain-text with `text`. 59 # Prefer curses UIs when available. Revert to plain-text with `text`.
60 interface = curses 60 interface = curses
61 # Make compatible commands emit cwd-relative paths by default.
62 relative-paths = yes
61 63
62 [commands] 64 [commands]
63 # Grep working directory by default. 65 # Grep working directory by default.
64 grep.all-files = True 66 grep.all-files = True
65 # Make `hg status` emit cwd-relative paths by default.
66 status.relative = yes
67 # Refuse to perform an `hg update` that would cause a file content merge 67 # Refuse to perform an `hg update` that would cause a file content merge
68 update.check = noconflict 68 update.check = noconflict
69 # Show conflicts information in `hg status` 69 # Show conflicts information in `hg status`
70 status.verbose = True 70 status.verbose = True
71 71