TidyFold is a VS Code extension that provides smart folding for Svelte and web development files. It enhances the default folding behavior with customizable options specifically designed for Svelte components.
TidyFold contributes the following settings:
tidyfold.enableCustomFolding
: Enable/disable custom folding behavior (default: true)tidyfold.foldParentBlocks
: Enable folding of parent blocks like div and script tags (default: false)tidyfold.excludedFoldingElements
: List of HTML elements that should not be folded (without angle brackets)tidyfold.showDebugLogs
: Show debug logs in output channel when folding operations occur (default: false)tidyfold.highlightFoldableBlocks
: Highlight foldable blocks with a light border (default: false)Ctrl+Alt+]
(macOS: Cmd+Alt+]
)Ctrl+Alt+[
(macOS: Cmd+Alt[
)If you encounter "command not found" errors:
Ctrl+Shift+P
> "Developer: Reload Window"Ctrl+Shift+U
) and select "TidyFold" from dropdownInstall from the VS Code Marketplace:
Install from a VSIX file:
.vsix
file for TidyFold..vsix
file to install the extension.By default, TidyFold will prevent folding of <div>
and <script>
tags since these often contain other foldable elements, and VSCode's default behavior would fold everything inside them as well. If you prefer to include these elements in folding, you can set tidyfold.foldParentBlocks
to true
.
Ctrl+Shift+P
or Cmd+Shift+P
on macOS).TidyFold: Minimize Expanded Regions
.The extension will automatically fold the targeted regions and scroll to the top of the document.
TidyFold provides the following commands (available in the command palette with Ctrl+Shift+P
):
TidyFold can visually highlight regions that are eligible for folding. This makes it easier to understand which parts of your code will be affected by folding operations.
To use this feature:
TidyFold: Toggle Highlight Foldable Blocks
You can also permanently enable highlighting by setting tidyfold.highlightFoldableBlocks
to true
in your VS Code settings.
If you can't see logs:
tidyfold.showDebugLogs
to true
in your settingsTidyFold: Show Debug Logs
from the command paletteContributions are welcome! If you find a bug or have a feature request, please open an issue on the GitHub repository.
This project is licensed under the MIT License. See the LICENSE file for details.
This extension leverages the VS Code API to provide folding functionality. Special thanks to the VS Code team for their extensive documentation and support.