Reputation: 1618
Are there plug-ins for Notepad++ to integrate with Mercurial and TortoiseHg?
Upvotes: 9
Views: 4095
Reputation: 17769
If you add the following to our config file you can use Notepad++ to open files.
[tortoisehg]
editor = <path\to\>Notepad++.exe ["$FILE" -n$LINENUM] -multiInst -nosession
You can get more information at https://bitbucket.org/tortoisehg/thg/wiki/OpenAtLine.
Upvotes: 10
Reputation: 494
Plugin exists only for tortoise svn, you can only semi integrate TortoiseHg with Notepad++ using
thg annotate "$(FULL_CURRENT_PATH)"
to show the history of the current file for anything else Workbench
Upvotes: 4