As I understand it, PyScripter does not have a Mercurial plugin, but it has custom support for custom tools.
For the Windows Mercurial GUI, I highly recommend TortoiseHg . It has good DAG rendering, a visual annotated file-by-file file merge dialog, comes with KDiff3 and integrates with other merge tools. It also displays overlays (clean, modified, added) files in Windows Explorer.
For better integration with PyScripter, you can add specific thg
calls as custom tools:
thg ci
- open commit windowthg blame <file>
- annotate the file (refer to PyScripter to find out how to transfer the current file name to the tool)
Caution Without the plugin, moved / renamed files will not be automatically noticed by Mercurial as such. You will either have to find the renames in the THG dialog, or transfer the files using Mercurial commands outside the IDE.
You may find this an acceptable substitute.
Helgi source share