In Visual Studio, there is a handy IDE shortcut for directly jumping to a file, i.e.
CTRL-/ (to select the Find combo-box) Then type in ">open myclass.cs"
This is much quicker than navigating through the Solution explorer to open the specified class.
However, if you try and open the code part of a form (not the designer part) in this way then Visual Studio simply returns "The operation could not be completed".
...which means that I have to go through the Solution explorer to open them.
Is there any way to get this shortcut to work for forms, or is there some other shortcut?
Update: the problem seems to be with intellisense...
If I type ">open form1.cs" then this works...
But if I type ">open form" and then use the up and down keys to select from the intellisense, so that the combo reads ">open "Form1.cs (OpenShortcutTest)"" then that operation will fail.