Formatting NetBeans 8.0 (automatic connection string when you press the enter button), how to disable it

Hi, I have a problem with NetBeans 8.0. when I press enter, the line in NetBeans automatically puts the line in a new line and joins the line with .., but I need it completely on one line.

For example: I want to create:

$variable = "Some string
             And next string"; 

But NetBeans 8.0 automatically creates me:

$variable = "Some string"
            ."And next string";

This is not good for formatting for me. How can i turn it off?

+4
source share
1 answer

In Tools -> Options -> Editor -> Code Completion -> PHP -> Quotation Completion: Use automatic string concatenation after a typed break.

+8
source

Source: https://habr.com/ru/post/1542843/


All Articles