RainbowIndent
Makes indentation easier to read.
Details
Installs
- Total 1K
- Win 538
- Mac 267
- Linux 213
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 | Jun 11 | Jun 10 | Jun 9 | Jun 8 | Jun 7 | Jun 6 | Jun 5 | Jun 4 | Jun 3 | Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 1 | 1 | 1 | 1 | 5 | 2 | 2 | 2 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 2 | 1 | 2 | 3 | 1 | 2 | 2 | 0 | 3 | 1 | 0 | 1 | 0 | 0 | 4 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 3 | 0 | 1 | 2 | 0 |
Mac | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 2 | 1 | 3 | 0 | 0 | 0 | 1 | 1 | 0 | 4 | 2 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 2 | 0 | 1 | 3 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 2 | 1 | 0 | 2 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 1 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
ST-RainbowIndent
Makes indentation easier to read.
This is a simple conceptual clone of the Indent Rainbow VSCode extension.
Installation
This package is available on Package Control by the name of RainbowIndent.
FAQ
How to Customize Indent Colors?
First, you have to decide how many colors you want to use for indents.
Say, if you want to use 6 colors, add the following into plugin's level_colors
setting.
"level_colors": [
"region.indent.0",
"region.indent.1",
"region.indent.2",
"region.indent.3",
"region.indent.4",
"region.indent.5",
],
These region.indent.0
… region.indent.5
are called scope
s in Sublime Text.
Names of scope
aren't important but I just feel these names are self-explanatory.
Next, you have to add coloring rules into your color scheme for those scope
s.
For example, adding the following rules into your color scheme.
foreground
is the indent line color whenlevel_style
is set toline
.background
is the indent background color whenlevel_style
is set toblock
.
Valid color formats are listed on Sublime Text's official document.
///////////////////
// RainbowIndent //
///////////////////
{
// red
"foreground": "rgba(229, 57, 53, 0.35)",
"background": "rgba(229, 57, 53, 0.2)",
"scope": "region.indent.0",
},
{
// green
"foreground": "rgba(67, 160, 71, 0.35)",
"background": "rgba(67, 160, 71, 0.2)",
"scope": "region.indent.1",
},
{
// blue
"foreground": "rgba(30, 136, 229, 0.35)",
"background": "rgba(30, 136, 229, 0.2)",
"scope": "region.indent.2",
},
{
// orange
"foreground": "rgba(251, 140, 0, 0.35)",
"background": "rgba(251, 140, 0, 0.2)",
"scope": "region.indent.3",
},
{
// purple
"foreground": "rgba(142, 36, 170, 0.35)",
"background": "rgba(142, 36, 170, 0.2)",
"scope": "region.indent.4",
},
{
// cyan
"foreground": "rgba(0, 172, 193, 0.35)",
"background": "rgba(0, 172, 193, 0.2)",
"scope": "region.indent.5",
},
How to Disable Rendering by Default and Enable Manually?
You can set the enabled_selector
plugin setting to "nothing"
.
Because no scope is named nothing
, this plugin won't render indents.
Then, you can enable rendering manually by one of the following ways.
- From the command palette:
RainbowIndent: Disable for This View (Forced)
- From the context menu:
RainbowIndent
»Disable for This View (Forced)
- Create and trigger a keybinding for the
rainbow_indent_view_toggle
command for convenience.
Known Issues
- There is no way to draw a region, where is no character, via ST's plugin APIs.