junichi11 opened a new pull request, #6877:
URL: https://github.com/apache/netbeans/pull/6877

   - https://github.com/apache/netbeans/issues/6714
   - Consider the TAB size when a column size is got
   
   Example:
   ```php
   array_merge(
        $x,
        $y,
   );
   ```
   
   Before:
   
   ```php
   array_merge(
        $x,
    $y,
   );
   ```
   
   After:
   
   ```php
   array_merge(
           $x,
           $y,
   );
   ```
   
   - Keep the last anchor to a stack when a method calls are nested
   
   Example:
   
   ```php
   nestedCall(
        something(
                                $arg1,
                        $arg2,
                C::something(
                                        $x,
                                        $y,
                                $z,
                )
        ),
                        $y,
                $z,
   );
   ```
   
   Before:
   
   ```php
   nestedCall(
        something(
                $arg1,
     $arg2,
     C::something(
                        $x,
      $y,
      $z,
                )
        ),
      $y,
      $z,
   );
   ```
   
   After:
   
   ```php
   nestedCall(
        something(
                $arg1,
                $arg2,
                C::something(
                        $x,
                        $y,
                        $z,
                )
        ),
        $y,
        $z,
   );
   ```
   
   - Add unit tests
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to