visual studio - How to switch between header and implementation in VS2010? -
is keyboard shortcut or free addon in visual studio 2010 allows switch between header (c/c++ .h file) , implementation (c/c++ .cpp file)?
visual studio not have built-in keyboard shortcut switch , forth. macro far best bet if want automate single keyboard shortcut. list of suggested options, see answers previous question.
the add-in visual assist x provides feature shortcut alt+o (however, add-ins not supported express editions of visual studio).
if you're trying avoid using macro, there alternative way achieve similar result, although two-click process:
- to switch header implementation: right-click a.cpp file , choose "go header file" context menu.
to switch implementation header: right-click identifier declared in header , choose "go definition" context menu.
Comments
Post a Comment