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

Ruler​Column

by gerardroche ST3

Show ruler column.

Details

Installs

  • Total 718
  • Win 376
  • Mac 184
  • Linux 158
Apr 27 Apr 26 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
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

RULER COLUMN

A Sublime Text plugin that shows ruler columns only on lines where the text overflows.

Menu > Preferences > Settings:

{
    "ruler_column": 120
}

You can also set the width (defaults to 0):

{
    "ruler_column_width": 0
}

Customising the color

In newer versions of Sublime Text (~= 3154) customising the color is straight forward enough.

Create a color scheme override in your Sublime Text User directory (find the User directory via Menu > Preferences > Browse Packages...). The override file must be the same name as the color scheme you want to override e.g. if you wanted to override the MonokaiFree color scheme then you would create a color scheme override file named MonokaiFree.sublime-color-scheme in your Sublime Text User directory. Here is an example:

{
    "rules":
    [
        {
            "scope": "ruler.column",
            "foreground": "#f92672",
            "background": "#f926729d"
        }
    ]
}