Thanks Lukas. I had noticed this but was not finding the correct combination so I thought I would ask. I did find that this extra indention is occurring in RBConfigurableFormatter>>isMultiLineMessage: and is fixed if I made the change to remove the additional indent (was IndentsForKeywords + 1) as seen in the snippet below. ... (aMessageNode arguments anySatisfy: [ :each | self indent: IndentsForKeywords around: [ self willBeMultiline: each ] ]) ifTrue: [ ^ true ]. ... This fixed my issue and seems to work well. I am sure you know this code very well so this is nothing you would not already know but it is pretty cool to me that I can make such a change to the system so easily. I now just need to find a good way to apply this change to my images going forward. Thanks! Scott On Apr 29, 2011, at 5:52 PM, Lukas Renggli wrote:
In 'World > System > Settings > Refactoring Engine > Configurable Formatter' you can change all kinds of settings related to the formatting.
Lukas
On 29 April 2011 23:00, Scott Gibson <wsgibson@windstream.net> wrote:
When I refactor, or format the code, there seems to be too much indention where "with: []" is used. For example:
renderHeaderOn: html (html div) id: 'header'; with: [ self renderLoginOn: html. self renderLogoOn: html. self renderMenuOn: html ]
Is this how it is supposed to be? Is there a way to reduce the indention by one level if so?
Thanks! Scott Gibson
-- Lukas Renggli www.lukas-renggli.ch
-- Scott Gibson wsgibson@windstream.net