what command name keyboard shortcut in visual studio (i use 2012) collapse/expand nodes in xml editor window?
its edit.expandalloutlining , edit.collapsealloutlining think.
see menu edit->outlining in visual studio. here´s reference msdn
- hide selection (ctrl + m , ctrl + h) - collapses selected block of code not available outlining, example if block. remove custom region, use stop hiding current (or ctrl + m, ctrl + u). not available in visual basic.
- toggle outlining expansion reverses current hidden or expanded state of innermost outlining section when cursor lies in nested collapsed section.
- toggle outlining (ctrl + m, ctrl + l) - sets regions same collapsed or expanded state. if regions expanded , collapsed, collapsed regions expanded.
- stop outlining (ctrl + m, ctrl + p) - removes outlining information entire document.
- stop hiding current (ctrl + m, ctrl + u) - removes outlining information selected user-defined region. not available in visual basic.
- collapse definitions (ctrl + m, ctrl + o) - collapses members of types.
Comments
Post a Comment