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?
Kamil source
share