Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove these horizontal lines in PHPStorm?

Tags:

php

ide

phpstorm

How to remove these horizontal lines in PHPStorm?

enter image description here

I must have searched through the entire Settings window, but I can't seem to find it. Is it even possible to remove them?

like image 745
ChocoDeveloper Avatar asked Jul 17 '13 10:07

ChocoDeveloper


1 Answers

Generally speaking there are two kinds of such separators:

1. Actual method separators -- they appear before method/function body. I do not see them on your screenshot so you must have removed them already.

It's controlled by Settings/Preferences | Editor | General | Appearance | Show method separators option:

enter image description here

2. Other separators -- before class/namespace/etc. These are visible on your screenshot.

Thing is: you cannot "remove" them in the same way -- only mask them (make invisible). For that:

  1. Settings/Preferences
  2. Editor | Color Scheme | General
  3. Code | Method separator color

Either remove any assigned colors (try this first) or assign the same color as background.

enter image description here

like image 145
LazyOne Avatar answered Sep 17 '22 02:09

LazyOne