On 12 Jun 2002 20:37:50 GMT, Stefan Schmiedl <
[hidden email]> wrote:
>Warning: Non-solution ahead!
>
>
>On Wed, 12 Jun 2002 20:22:16 GMT,
>Costas <
[hidden email]> wrote:
>> I would like to use the TAB key to indent multiple lines in a
>> workspace.
>
>If you're using D5, I'd go for the simple solution
>and let the system reformat your code upon accepting.
>Then get used to Ctrl-s instead of Tab.
I prefer my own style of formatting. I like to make it more structured
looking especially when it comes to the brackets. For example I find
this easier to read than the one below.
test
a = b ifTrue: [
b > 1 ifFalse: [
b:=0.
] ifTrue: [
b:=1.
self at: 1 put:: a.
].
].
test
a = b
ifTrue:
[b > 1
ifFalse: [b := 0]
ifTrue:
[b := 1.
self at: 1 put: a]]].
Regards,
Cosats