Add Optional Periods 
If this option is enabled, optional periods are added.
OFF
(do not add optional periods)
^[:a | a + self size]
ON
(add optional periods)
^[:a | a + self size.]
Add a Space after Return (^)
If this option is enabled, a space is inserted after return (^)
OFF
(do not insert a space)
sample
   ^self
ON
(insert a space)
sample
   ^ self
 
Use the Maximum Width (Ignore the Window Width)
If this option is enabled, the maximum width is used and the width of the current window is ignored. The following examples use a very narrow window.
OFF
(use window width)
sample
   ^Transcript
      cr;
      show:
         self location
            printString
ON
(use maximum width)
sample
^Transcript
   cr;
   show: self location printString
Last modified date: 06/30/2015