Topic: gd request
The gd command in VIM just goes to the first place in the file that an item is defined. ViEmu mimics that gehavior exactly. I think it would be nicer if gd actually went to the real declaration of an item - even if the item is a method defined in a different class. Example:
File1.cs
...
MyFile2 x = new MyFile2();
x.DoSomething()
...
If the cursor is on MyFile2Object and I press gd, it would open MyFile2.
If the cursor is on MyFile2() it would open MyFile2 and go to the constructor.
If the cursor is on DoSomething it would open MyFile2 and go to the DoSomething() method.
If declarations are in the same file then gd would bring me to that declaration instead of just the first place it is used. There is a GoToDeclaration opion in VisualStudio so it would probably be just a remappging for gd.
This would be much appreciated,
Jerry