php - NetBeans 8.0 formatting, ( automatic join string when i push enter ) how to turn it off -
hello have problem netbeans 8.0. when push enter, in string netbeans automatically put me string new line , join string ".", need in 1 string.
for example: want create:
$variable = "some string , next string";
but netbeans 8.0 automatically creates me:
$variable = "some string" ."and next string";
it not formatting me. how can turn off?
in tools -> options -> editor -> code completion -> php -> quotes completion: use string auto-concatenation after typed break.
Comments
Post a Comment