Line up Array Parentheses 
If this option is enabled, array parentheses are lined up. They are lined up only if the array does not fit on one line.
OFF
(do not line up parentheses)
self testArray:
   (AAAAA BBBB CCCCC DDDD
   EEEE FFFF)
ON
(line up parentheses)
self testArray:
   (AAAAA BBBB CCCCC DDDD
   EEEE FFFF
   )
Line up Parentheses
If this option is enabled, parentheses are lined up. They are lined up only if the expression does not fit on one line.
OFF
(do not line up parentheses)
^self location:
   (self
      sizeOf: myCollection
      afterRemoving: otherCollection
      includingDuplicates: true)
ON
(line up parentheses)
^self location:
    (self
      sizeOf: myCollection
      afterRemoving: otherCollection
      includingDuplicates: true
      )
Space between Parentheses
If this option is enabled, a space is inserted after an opening parenthesis and before a closing parenthesis.
OFF
(do not insert spaces)
2 + (self sizeOf: myCollection)
ON
(insert spaces)
2 + ( self sizeOf: myCollection )
Start Open Array Parentheses on the Same Line
If this option is enabled, opening array parentheses are placed on the same line as the selector.
OFF
(parenthesis does not follow the selector)
self testArray:
   (AAAAA BBBB CCCCC DDDD
   EEEEE)
ON
(parenthesis follows the selector)
self testArray: (AAAAA BBBB CCCCC DDDD
   EEEEE)
Start Open Parentheses on the Same Line
If this option is enabled, opening parentheses follow the selector.
OFF
(parenthesis does not follow the selector)
^self location:
   (self
      sizeOf: myCollection
      afterRemoving: otherCollection
      includingDuplicates: true)
ON
(parenthesis follows the selector)
^self location: (
self
sizeOf: myCollection
afterRemoving: otherCollection
includingDuplicates: true)
Last modified date: 06/30/2015