Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get rid of the middle grey line in the workspace

How can I remove that grey line on the code workspace .. Image:

  • Look at that vertical grey line at the right side ..

enter image description here

like image 342
Ido Avatar asked Dec 03 '13 12:12

Ido


People also ask

How can I remove that grey line on the code workspace?

How can I remove that grey line on the code workspace .. Image: Look at that vertical grey line at the right side .. Show activity on this post. Edit - As noted in the comments, in more recent versions this is now found at Settings > Editor > General > Appearance > Uncheck "Show hard wrap and visual guides"

How do I remove the vertical line on the top bar?

So you need to go disable or unmark that option to hide that vertical line. From the PhpStorm top bar menu, go to File > Settings > Editor > General > Appearance and Show hard wrap guide (Configured in Code Style options) checkbox option and unmark to disable it. Show activity on this post.

What does the “remove gridlines” setting do?

The “Remove Gridlines” setting is specific to each worksheet, and removing gridlines will remove gridlines from the entire worksheet, but will still be visible in other worksheets in the workbook.

How do I remove the right margin from the code style?

Go to Settings → Editor → General → Appearance and uncheck Show Right Margin. You can also configure where the right margin is in the code style settings. Show activity on this post.


2 Answers

Edit - As noted in the comments, in more recent versions this is now found at Settings > Editor > General > Appearance > Uncheck "Show hard wrap and visual guides"


It's called the 'right margin', and it indicates the width of your code, so that if you are trying to comply with a coding standard that requires a maximum width you can easily see where that is.

To remove it completely go into Settings, and under IDE settings find Editor -> Appearance, then uncheck the box marked "Show right margin".

Alternatively, if you want to reposition the line, you can do so under Project Settings -> Code Style -> General, and change the Right Margin value.

like image 167
shanethehat Avatar answered Oct 18 '22 19:10

shanethehat


PhpStorm 10

File > Settings... > Editor > General > Appearance > uncheck "Show right margin (configured in Code Style options)"

enter image description here enter image description here

like image 28
ROMANIA_engineer Avatar answered Oct 18 '22 17:10

ROMANIA_engineer