StudioB
StudioB

Reputation: 127

Android Studio - How to make Vertical Line Guides Darker in the Code Editor?

I'm trying to change the look of something in the main code Editor..
In Android Studio, when you're typing out your Code (Java, as well as the XML), do you know how for each "Method", or 'Block of Code', there is a very thin grey vertical line on the left side of each bunch of code, to let you know where your Method begins and ends? I want to make that lightgrey line DARKER!

so,
1) How can I edit my settings to make those lines darker, to see them better?
and
2) What exactly are those lines called, so I know how to identify them by name in the future?

Sorry for the silly question! But it would definitely help me alot..
Thanks!

Upvotes: 1

Views: 1772

Answers (1)

Mousa
Mousa

Reputation: 2300

They are called Vertical Indent Guides.

You can edit their color by going to:

File -> Settings -> Editor -> Colors & Fonts -> General.

There open the node Code and find two entries Selected vertical indent guide and Vertical indent guide. For each of them you can edit their Background color at right panel.

enter image description here

Upvotes: 1

Related Questions