4

We're using Hg with Visual studio 2010. I'd like to be able to see who has edited the code from the editor with out having to fire up VisualHg or the command prompt.

Does anyone know of a plug-in that shows the users in the margin of the the editor?

Even my annotate function with VisualHG only shows change sets, then you have to look up who committed that change set.

Des Horsley
  • 1,858
  • 20
  • 43

1 Answers1

5

VisualHg does show the user who committed the change. You can find the Annotate File function by right clicking on the document's tab or by right clicking on the document in the solution explorer. When you choose this option, you get the TortoiseHg Annotate window which looks like this:

Annotate Screenshot

If you hover over a line of source in the right hand window, the status bar text changes to say who made the change, the local revision number of the changeset, how long ago it was committed and the first line of the message. You can't hover over the line number or revision number gutter columns, the mouse needs to be over the actual source for the status text to change.

This is with TortoiseHg 2.3.1 and VisualHg 1.1.5.

Steve Kaye
  • 6,262
  • 2
  • 23
  • 27
  • That sounds like it will suit me perfectly, I've had a look on my set up, and can't see it, I'd really appreciate if you could post how to get it, or a screen shot or something. – Des Horsley Aug 03 '12 at 00:41
  • Unfortunately, I'm on holiday and won't be able to look until next week but I'll make a note to check for you when I can. – Steve Kaye Aug 04 '12 at 03:26
  • I've added the extra details now. – Steve Kaye Aug 08 '12 at 10:09
  • Thanks Steve, this is not quite what I am looking for but its a good work around in lieu of something in the editor itself. – Des Horsley Aug 08 '12 at 20:56