VS Code¶
Code Folding¶
• Press Ctrl+K Ctrl+0 (zero) to fold all functions/methods
• Press Ctrl+K Ctrl+J to unfold all
• Click the little arrows ▶️ in the gutter to fold/unfold individual functions
• You can also fold to a specific level with Ctrl+K Ctrl+2 (for level 2) etc.
### Outline View
• Open the "Outline" view in the Explorer sidebar (usually at the bottom) • This shows a structured view of all methods in the Commands class • Click any method to jump directly to it • You can also press Ctrl+Shift+O to open a quick outline search
Search Features¶
• Use Ctrl+F to search within the file
• Use Ctrl+Shift+F to search across all files
• Use Ctrl+T to quickly jump to symbols (methods/classes)