I have a problem that the code formatter inserts space after & symbol and I can't find the way to disable it, so if I type something like this:

$a = &$b;

it becomes:

$a = & $b;

How can I fix this?

    That's a bug. We will fix it asap.

    Thank you!

      Fix will be available in the next pre-release.

      As always, thank you Murz!

        Just a note: upcoming pre-release will be respecting also this notation for reference assignment:

        $a =& $b;

        So whatever is used, it will be kept that way.

          Write a Reply...