Code Folding

editor
productivity
navigation
COcodefolding

Description

Smart code folding rules to help organize and navigate large files. Automatically folds code sections for better readability.

json
{
  "rules": [
    {
      "name": "Fold Imports",
      "pattern": ".*\\.js$|.*\\.jsx$|.*\\.ts$|.*\\.tsx$",
      "commands": [
        {
          "title": "Fold Imports",
          "command": "editor.foldAllImports",
          "when": "editorTextFocus"
        }
      ]
    }
  ]
}