ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Syntax​Fold

by jamalsenouci ST3

Sublime Text Plugin that provides a configurable command and popup for folding code based on syntax

Details

Installs

  • Total 15K
  • Win 8K
  • Mac 4K
  • Linux 3K
Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
Windows 0 2 0 1 0 0 0 3 0 1 1 0 0 1 0 0 2 0 0 1 2 0 1 0 1 1 0 0 2 2 1 1 1 1 1 0 0 1 1 0 0 1 0 1 1
Mac 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 2 1 6 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

SyntaxFold - Sublime Text Plugin

A plugin for Sublime Text 3 that folds/collapses or unfolds/expands code blocks based on specific syntax defined by the User rather than indent.

Note: This plugin does not create folding markers (the functionality for creating these markers is not exposed within the Sublime Text API). The folding functionality provided by this plugin relies on using keyboard shortcuts assigned by the User or by invoking fold commands through the command panel.

Background

This plugin was created for any language that uses named regions similar to languages like VB, C++ and C# (see here). Where possible, use a plugin created specifically for your syntax.

Expanding and collapsing areas is also supported in non-source files, such as text files (Sublime Text regards HTML as belonging to a text scope name).

Installation

  • Use Sublime Package Control
  • Ctrl+Shift+P then select Package Control: Install Package
  • Type SyntaxFold and press ENTER

Alternatively Clone this repository to your Sublime Text packages directory.

Setup

The settings file can be accessed through Preferences -> Package Settings -> Settings - User. It will be initially populated with the following settings.

{
    "config":[
        {
            "scope": "source.java, source.js, embedding.php",
            "startMarker": "//region",
            "endMarker":"//endregion"
        },
        {
            "scope": "source.cs",
            "startMarker":"#region",
            "endMarker":"#endregion"
        },
        {
            "scope": "source.c++, source.c",
            "startMarker":"#pragma region",
            "endMarker":"#pragma endregion"
        },
        {
            "scope": "text.html.basic",
            "startMarker":"",
            "endMarker":""
        },
        {
            "scope": "text.plain",
            "startMarker":"---region---",
            "endMarker":"---endregion---"
        }
    ]
}

Add or remove fold region objects to meet your needs. Note the scope key. Utilize this key to filter which source file types for which the start and end markers are active. To determine the scope name for a file type use Tools -> Developer -> Show Scope Name or Ctrl+Alt+Shift+P.

The scope key may contain a comma separated list of scopes for which the markers should be active. The settings file above supports, for example, Java, Javascript and PHP files folding through the same //region and //endregion markers since the defined scope is "source.java, source.js, embedding.php".

Usage

Use the keybindings to fold/unfold your code

Key Bindings

The following is an excerpt of the default key bindings:

[
//Fold all code blocks
  { "keys": ["alt+0", "alt+0"],
    "command": "fold_all" },

// Unfold all code blocks
  { "keys": ["alt+shift+0", "alt+shift+0"],
    "command": "unfold_all"},

// Toggle fold current code block
  { "keys": ["alt+1", "alt+1"],
    "command": "toggle_fold_current"},
]

Command Reference

A list of commands have been added to the command palette and can be accessed using Ctrl+Shift+P. All commands start with “SyntaxFold : [command name]”.

Fold All: Fold/collapse all syntax delimited blocks in the current document.

Unfold all: Unfold/expand all syntax delimited blocks in the current document.

Toggle Fold Current: Folds/collapses or Unfolds/expands the syntax delimited block where the cursor is placed on.

Open README: Open this readme file.

Saving fold state

This package doesn't support saving the folded state of a file (remembering which blocks you have folded) but there is a package called BufferScroll perfectly suited to that https://packagecontrol.io/packages/BufferScroll