How do I enable a "contextual" editor in Visual Studio? -


a number of ides , editors offering "contextual" editing tools:

  • a simple example assistant editor in xcode. secondary edit windows automatically loads relevant secondary file depending on context in. instance, if open header (foo.h) in primary window, automatically opens implementation (foo.m) in assistant window, , on.

xcode's assistant editor

  • brackets has quick edit pressing ctrl+e allows edit css selector points current html element.

    brackets' quick edit

  • light table has inline documentation , drafting tables:

    light table's inline documentation

    light table's drafting tables

  • microsoft has debugger canvas project similar want, it's debug mode , limited visual studio ultimate. tool looking tool coding, not debugging.

    microsoft's debugger canvas

i normal editor, , secondary editor shows me context of editing.

  • if on class implements interface, secondary editor show interface

  • if on class member instance of class, secondary editor switch class source

  • if on method, secondary editor point method body

and on…

is there way(*) have similar experience in visual studio 2012?

(*) hidden trick, extension feature, quick hack, solution works you…

you can use code definition window.

you enable going view > code definition window. can dock on middle right. works so:

code definition


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -