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

Rainbow​Brackets

by absop ST3 Trending

A rainbow brackets plugin for SublimeText4.

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

RainbowBrackets

License Downloads

Introduction

RainbowBrackets uses the brackets and colors that you give in the settings file, searches and highlights brackets in file views. Brackets at different levels will be dyed with different colors according to the settings. Colors are gave in a list, and will be used repeatedly.

parentheses, braces, brackets are treated as brackets. brackets are configured in setting file, it means you can use OO as a opening bracket and CC as a close bracket. some characters will cause many match error, can't serve as brackets, such as <>.

Example

{ [ 【 OO OO 《《》OOxCC》 CC CC 】 ] }

Installation

Clone or download this repository to your Packages directory of Sublime Text. Note that the directory name should be the name of this repository.

If you have installed Package Control, press down ctrl+shift+p to get into the command palette, then, input the command pcip (Package Control: Install Package) and Enter to run it. Wait some time… After package infomations have been loaded remotely, input the name of this plugin RainbowBrackets, and press down Enter to install it.

Usage

Settings

Settings template

{
    "debug": false,

    "default_config": {
        "bracket_pairs": {
            "(": ")",
            "[": "]",
            "{": "}"
        },

        "coloring": false,

        "enabled": true,

        "ignored_scopes": [
            "comment",
            "string",
            "constant"
        ],

        "rainbow_colors": [
            "#FF0000", // level0
            "#FF6A00", // level1
            "#FFD800", // level2
            "#00FF00", // level3
            "#0094FF", // level4
            "#0041FF", // level5
            "#7D00E5"  // level6
        ],

        "mismatch_color": "#FF0000"
    },

    "syntax_specific": {
        "Scheme": {
            "extensions": [".scm", ".ss"],

            "ignored_scopes": [
                "comment", "string", "constant", "symbol"
            ]
        },

        "JSON": {
            "bracket_pairs": {
                "{": "}",
                "[": "]"
            },

            "extensions": [
                ".json",
                ".sublime-build",
                ".sublime-color-scheme",
                ".sublime-commands",
                ".sublime-keymap",
                ".sublime-menu",
                ".sublime-settings",
                ".sublime-theme",
            ],

            "ignored_scopes": [
                "comment", "string"
            ]
        }
    }
}
  • ignored_scopes: to ignore brackets in some scopes(such as comment, string).

Commands

  • Preferences: RainbowBrackets Settings
  • RainbowBrackets: toggle debug
  • RainbowBrackets: make rainbow
  • RainbowBrackets: clear rainbow
  • RainbowBrackets: clear color schemes

Key bindings

RainbowBrackets support fast opreating brackets, including select, remove and transform.

Keys Description
ctrl+alt+9 Replace the brackets around the cursors with ()
ctrl+alt+0 Replace the brackets around the cursors with ()
ctrl+alt+[ Replace the brackets around the cursors with []
ctrl+alt+] Replace the brackets around the cursors with []
ctrl+alt+shift+[ Replace the brackets around the cursors with {}
ctrl+alt+shift+] Replace the brackets around the cursors with {}
ctrl+alt+r Remove the brackets around the cursors
ctrl+alt+. Remove the brackets around the cursors and select the text within the brackets
ctrl+alt+, Select the brackets around the cursors and the text within the brackets

Screenshots

  • Material color scheme, JSON file.
  • Material color scheme, Scheme language
  • Material lighter color scheme, Scheme language