vote up 7 vote down star
6

After working for a few days with Eclipse Java I totally got addicted to pressing Ctrl and clicking on an identifier to go to its definition. Since then I've been looking for a way to achieve this in Visual Studio as well.

I realize VS has right click, Go to definition, and that F12 does the same. I also realize that Visual Assist does something similar with Alt+G. Yet none of these are as perfect as Ctrl+click.

I've actually tried my luck for a few hours trying to write a VS plugin to do it but didn't get anywhere in the time frame I thought reasonable for this.

Does anyone know how this could be achieved? A ready plugin? A macro of some kind?

flag

42% accept rate
What's the difference between F12 ans Eclipse Ctrl+Click? – Pokus Oct 3 '08 at 19:02
I have to agree that I don't see the difference but I am interested in the answer. – wcm Oct 3 '08 at 19:13
Can you describe why Eclipse's ctrl-click is more "perfect" than the other options you list? Fewer steps? Faster? Fewer failures? Different display of results? – jwfearn Oct 4 '08 at 1:46
1  
@jwfearn et al: In my case, when I'm reading through some code (rather than writing), my right hand is already typically on the mouse, and my left thumb is near the left Ctrl key. It's super fast and easy to ctrl+click in that situation; easier than using the right-click menu (or reaching for F12). – Jon Schneider Oct 21 '08 at 3:00
Ctrl+Click as word selection >>> Ctrl+Click as navigate. – 280Z28 Sep 2 at 2:20

8 Answers

vote up 2 vote down

Visual Assist supports Ctrl+Click as of June 2009 (build 1727).

link|flag
vote up 0 vote down

right click + go to definition requires 2 steps from the same hand. ctrl+click can be done in one step (using both hands). way better! I really miss ctrl+click in VS :-(

link|flag
Using both hands means that I need to put either my coffee, Coke, or smoke down - depending on where and when I am working. I'll pass! ;-) – joseph.ferris Dec 21 '08 at 13:42
vote up 0 vote down

See also this question.

link|flag
vote up 1 vote down

Another option with VS (besides F12 and right-click > Go to Def) is add the code definition pane (View > Code Def Window). This is essentially another editing pane that shows the code for the current symbol - no need to ctrl-click or anything. I keep it pinned to my secondary monitor. Any time I need to see the implementation for a symbol I just click it and look over.

Another nice thing about F12 is you can also do Shift-F12 to find references to a symbol and F8 through them. The two go together like love and happiness.

link|flag
vote up 2 vote down

I use the built in options (F12, Right-click -> Go to definition) but I know a lot of the guys at my company use Resharper and it definitely has this functionality.

link|flag
vote up 0 vote down

I must be missing something because I don't see how Eclipse's ctrl-click feature (as described) is any better than Visual Studio's right-click-go-to-definition which requires fewer steps and can be done with one hand.

link|flag
1  
Visual Studio can take seemingly ages to bring up the right-click context menu sometimes. – Joel Coehoorn Oct 6 '08 at 13:03
1  
Strange. I have not seen this in any version of VS.NET on my machine(s). The only time I have seen this was on a friend's machine. He had installed an add-in that caused a slow creation of the context menu due to the fact it was doing some sort of context-related computations. – joseph.ferris Dec 21 '08 at 13:41
vote up 3 vote down

I'll answer the commentors who asked about the difference between ctrl-click and F12.

Ctrl-click workflow:

  • Move hand to mouse
  • Move mouse to hover over variable name
  • Other hand holds down ctrl key while you click
  • Move mouse to position cursor, highlight, right-click, or whatever
  • Move hand back to keyboard to continue typing

F12 workflow

  • Move hand to mouse
  • Mouse mouse to hover over variable name
  • Move hand back to keyboard
  • Hit F12 key
  • Move hand back to mouse
  • Move mouse to position cursor, highlight, right-click, or whatever
  • Move hand back to keyboard to continue typing

If you assume the cursor is already positioned on the desired variable, F12 is better. However, that's rarely the case. Also, if you stop after this specific action, assuming you want hands back at the keyboard, the cost is the same. But if you keep in mind that you probably had a reason for wanting to go to the definition, the ctrl-click workflow saves you an instance of moving between the keyboard and mouse.

link|flag
vote up 1 vote down

I don't work in VS much, so I haven't used it, but I've heard incredibly good things about Resharper from everyone I know who does. Everyone has told me it's worth every penny, and significantly improves efficiency in Visual Studio. I think it has a feature like what you're looking for, along with a TON of others.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.