suchecki300
suchecki300

Reputation: 16

PhpStorm - how to move divider line

I have a problem with PhpStorm. I'm talking about the line which divide code. Sometimes I have too much characters in one line and this line move next characters to next line.

I prefer to use Ctrl + Alt + L to format code and this line destroy readability of code.

How can I move this line or even delete it?

PhpStorm

Upvotes: 0

Views: 418

Answers (1)

lena
lena

Reputation: 93738

You can try setting Hard wrap at value in Settings | Editor | Code Style | HTML to some big number and set Visual guides: accordingly. You can also try disabling Wrap text and setting Wrap attributes to Do not wrap.

Note that you can hide the hard wrap guide line by disabling Show hard wrap guide (configured in Code Style options) in Settings | Editor | General | Appearance, but hiding it won't prevent code from being wrapped (as @LazyOne mentioned in his comment)

Upvotes: 1

Related Questions