Mega Code Archive

 
Categories / Delphi / Examples
 

Delphi net collapsing editor keyboard shortcuts

Delphi 8 introduces code folding - the collapsing and expanding of code sections so that you can navigate easier. By default folding is enabled for methods/routines, code blocks regions and structured types. While it is possible to collapse using the mouse (intuitively clicking on the + or - left of a code block), it's great to see that Borland provides keyboard shortcuts: Ctrl + Shift + K + U : Expands the nearest block (-) Ctrl + Shift + K + E : Collapses the nearest block (marked with +) Ctrl + Shift + K + A : Expand all code in a unit (all -) Ctrl + Shift + K + T : Toogle current block (closest +/-) Ctrl + Shift + K + O : Toggle code folding for the active document