Delphi .NET (2) Database (71) Delphi IDE (89) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280)
Exchange Links About this site Links to us 
|
Delphi .NET: collapsing editor keyboard shortcuts
This article has not been rated yet. After reading, feel free to leave comments and rate it.
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
Comments:
|