Search code examples
editorsublimetext2sublimetextsublimetext3sublime-text-plugin

Right hand text limit/range indicator line Sublime


Hi I was wondering if anyone knew of a way to add a vertical range indicator line into Sublime editor either with a package or in the settings? Similar to the one in eclipse that is there by default.


Solution

  • In your settings file you can pass an array:

    "rulers":
    [
        80,
        120, 
    
    ],
    


    (source: wes.io)