Enable HG interactive mode on Windows
Categories
(Developer Services :: Mercurial: configwizard, enhancement)
Tracking
(Not tracked)
People
(Reporter: mhentges, Assigned: mhentges)
References
Details
Attachments
(1 file)
It's unclear what the specific requirements are to do this - perhaps just have windows-curses
installed into the associated Python environment? Unsure.
However, manually enabling it appears to work on MSYS2.
Comment 1•3 years ago
|
||
We probably need to add an else
to this section of configwizard to force curses
or unset text
as the interface - then as long as our environment is configured it should Just Work.
Comment 2•3 years ago
|
||
Just noticed we also have another curses check as well. We might be able to remove the check from this comment and prefer to set curses via tweakdefaults
, and then simply set/unset ui.interface=text
when we can't import curses in our environment.
Assignee | ||
Comment 4•3 years ago
|
||
Also, re-running configwizard
should set/remove ui.interface
according to whether curses
can be imported in the current Python
environment.
Merges _checkcurses()
into _checktweakdefaults()
since
tweakdefaults
enables ui.interface = curses
itself.
Updated•3 years ago
|
Pushed by cosheehan@mozilla.com:
https://hg.mozilla.org/hgcustom/version-control-tools/rev/69882eb1b7b9
Remove ui.interface = text
if curses is available r=sheehan
Description
•