Tab Size

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

Tab Size

Andrew Lawson
Hello
        I'm convinced I'm being stupid but where can I change the editor
tab size? 8 spaces is far too many for me :)

        Andrew


Reply | Threaded
Open this post in threaded view
|

Re: Tab Size

Stefan Schmiedl
On Wed, 23 Nov 2005 17:14:56 +0000, Andrew Lawson wrote:

> Hello
> I'm convinced I'm being stupid but where can I change the editor
> tab size? 8 spaces is far too many for me :)
>
> Andrew


SmalltalkWorkspace defaultTabWidth: 4

does the trick for me...

I'm beginning to develop a serious for this D6 thing :-)
s.


Reply | Threaded
Open this post in threaded view
|

another *major* improvement, was Re: Tab Size

Stefan Schmiedl
On Wed, 23 Nov 2005 19:01:32 +0100, Stefan Schmiedl wrote:

>
> I'm beginning to develop a serious for this D6 thing :-) s.

... especially since I found out that I can get an IdeaSpace
to close the current card via a keyboard shortcut: Just add
#(#closeCard 'ALT+DOWN') to the array returned in
IdeaSpaceShell class>>defaultAdditionalAccelerators
and use ALT+LEFT/RIGHT/DOWN for working with the tabbed views.

Hussah.

s.


Reply | Threaded
Open this post in threaded view
|

Re: Tab Size

Ian Bartholomew-21
In reply to this post by Stefan Schmiedl
Stefan/Andrew,

>> I'm convinced I'm being stupid but where can I change the editor
>> tab size? 8 spaces is far too many for me :)
>>
>> Andrew
>
>
> SmalltalkWorkspace defaultTabWidth: 4

There's also a User Preference entry for it, albeit well hidden :-)

DevelopmentSystem/workspaceClass/defaultTabWidth

--
Ian

Use the Reply-To address to contact me.
Mail sent to the From address is ignored.


Reply | Threaded
Open this post in threaded view
|

Re: Tab Size

Blair McGlashan-3
"Ian Bartholomew" <[hidden email]> wrote in message
news:[hidden email]...

> Stefan/Andrew,
>
>>> I'm convinced I'm being stupid but where can I change the editor
>>> tab size? 8 spaces is far too many for me :)
>>>
>>> Andrew
>>
>>
>> SmalltalkWorkspace defaultTabWidth: 4
>
> There's also a User Preference entry for it, albeit well hidden :-)
>

Yes, probably too well hidden. I think it should probably be reflected up
into the Smalltalk Workspace options which sets options for the Smalltalk
Workspace shell, not necessarily all workspaces, although usually it does.
We'll add an enhancement patch in PL1 (#2010).

Regards

Blair


Reply | Threaded
Open this post in threaded view
|

Re: Tab Size

Andrew Lawson
On 2005-11-23, Blair McGlashan <[hidden email]> wrote:

>
> "Ian Bartholomew" <[hidden email]> wrote in message
> news:[hidden email]...
>> Stefan/Andrew,
>>
>>>> I'm convinced I'm being stupid but where can I change the editor
>>>> tab size? 8 spaces is far too many for me :)
>>>>
>>>> Andrew
>>>
>>>
>>> SmalltalkWorkspace defaultTabWidth: 4
>>
>> There's also a User Preference entry for it, albeit well hidden :-)
>>
>
> Yes, probably too well hidden. I think it should probably be reflected up
> into the Smalltalk Workspace options which sets options for the Smalltalk
> Workspace shell, not necessarily all workspaces, although usually it does.
> We'll add an enhancement patch in PL1 (#2010).

    Yes, I'm sorted now but I must admit to this being a bit too well
hidden for me, not that I spent that long searching. On the positive
side I've just spent a couple of hours testing old libs and deploying a
couple of my applications from X6. about 70% of the libs (mine and those
from the usual suspects) work without change, in a couple of cases I had
to fiddle with loose methods that now exist by default. All in all not
much hassle. Congratulations.

    Andrew