Right hand text limit/range indicator line Sublime

87 Views Asked by At

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.

1

There are 1 best solutions below

0
On BEST ANSWER

In your settings file you can pass an array:

"rulers":
[
    80,
    120, 

],


(source: wes.io)