Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mercurial and Notepad++ Integration

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

like image 961
hellboy Avatar asked Feb 09 '12 09:02

hellboy


2 Answers

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.

like image 183
Nick Pierpoint Avatar answered Nov 09 '22 06:11

Nick Pierpoint


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

like image 21
im-i0dum Avatar answered Nov 09 '22 05:11

im-i0dum