I am using sublime text.
I am using the following in the settings to show indent lines:
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
And also changed the color using the following in the color theme files:
<key>guide</key>
<string>#000000</string>
<key>activeGuide</key>
<string>#c60519</string>
But now i want to make the indent lines thicker. Presently i am able to show them and change color by the above settings.
SO how to make indent lines thicker
Also outlined in the issue linked below, but just for clarity Sublime Text builds 4161 (dev
) and 4166 (stable
) introduced a new setting that controls this specifically:
// Controls how wide ruler lines are drawn
"ruler_width": 1.0,
Thus this is now actually possible where it previously was not.
There is currently no way to configure this; the default width is hard coded in the rendering code so the only modifiable options are the colors to use. Note tha the default configuration specifically mentions that there should be an option in the scheme to change the width, although no such option is known to exist.
There is currently an open issue requesting that this feature be added in a future build.