I can go to a specific line number by double clicking in the status bar in Visual Studio. Is there a keyboard shortcut that does the same thing?
+3
A:
Ctrl + G works for me.
If it doesn't work for you, you can always map whatever shortcut you want under Tools | Options | Environment | Keyboard.
EDIT: Yes, as @Brian mentions, the command in this case is Edit.GoTo
I just realised that the default in C# settings for this command is Ctrl + G
, whereas in VB Settings, there is no default keyboard short - it's mapped to show the immediate window - strange I think. I swapped the mappings so that the two environment behave the same.
Galwegian
2008-12-02 10:27:06
In this case the command is Edit.Goto
Brian
2008-12-02 10:32:26
cheeky ;) Giving the correct answer and then changing it to the 'real' answer after the OP marked the first one as accepted.
Metro Smurf
2010-04-01 14:14:55
A:
Every IDE or even text editor I have ever used either uses Ctrl+L or Ctrl+G for this purpose.
I assume this could stand for Ctrl+Line or Ctrl+Goto
adam
2008-12-02 10:37:13