hellboy
hellboy

Reputation: 1618

Mercurial and Notepad++ Integration

Are there plug-ins for Notepad++ to integrate with Mercurial and TortoiseHg?

Upvotes: 9

Views: 4095

Answers (2)

Nick Pierpoint
Nick Pierpoint

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

im-i0dum
im-i0dum

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

Related Questions