Re: [Pharo-users] BlockStyler: Make Blocks more recognizable in source code

2017-09-08 Thread Alistair Grant
Hi Manuel, Thanks very much for making this available and taking the trouble to get it working with the light theme as well. On Fri, Sep 08, 2017 at 06:37:12AM +, Cyril Ferlicot wrote: > > On jeu. 7 sept. 2017 at 18:16, Manuel Leuenberger > wrote: > > Well, it has something similar no

Re: [Pharo-users] BlockStyler: Make Blocks more recognizable in source code

2017-09-07 Thread Manuel Leuenberger
And I merged it, thanks Denis for Calypso support and getting rid of meta-link trickery. Themes are now supported as well. It only brakes on Watery + Calypso, but I think this is a Calypso issue, not introduced by BlockStyler. > On 7 Sep 2017, at 12:07, Denis Kudriashov wrote: > > And I did pu

Re: [Pharo-users] BlockStyler: Make Blocks more recognizable in source code

2017-09-07 Thread Denis Kudriashov
And I did pull request https://github.com/maenu/BlockStyler/pull/1 which simplifies everything. There are already IconStyler hierarchy for such kind of extensions. So I adopt your code for this and remove metalink tricks. Also I move settings directly to the BlockStyler class 2017-09-07 11:37 GMT+

Re: [Pharo-users] BlockStyler: Make Blocks more recognizable in source code

2017-09-07 Thread Alistair Grant
Hi Manuel, On Wed, Sep 06, 2017 at 01:52:17PM +0200, Manuel Leuenberger wrote: > Hi everyone, > > I built a little syntax highlighting extension for the Nautilus source > code pane, which puts a background color behind blocks, so that nested > blocks are easily recognizable. This looks really

Re: [Pharo-users] BlockStyler: Make Blocks more recognizable in source code

2017-09-07 Thread Denis Kudriashov
Hi. I will look. Maybe Calypso plugins are already able to do this kind of extensions 2017-09-07 9:58 GMT+02:00 Manuel Leuenberger : > It’s installed through a meta-link on AbstractNautilusUI >> #addIconStyle > and uses RubConfigurationChange to announce on the editor’s > sourceTextModel. It is

Re: [Pharo-users] BlockStyler: Make Blocks more recognizable in source code

2017-09-07 Thread Manuel Leuenberger
It’s installed through a meta-link on AbstractNautilusUI >> #addIconStyle and uses RubConfigurationChange to announce on the editor’s sourceTextModel. It is not yet a proper Nautilus plugin and should be portable to Calypso, as it still uses Rubric. > On 7 Sep 2017, at 07:53, Stephane Ducasse

Re: [Pharo-users] BlockStyler: Make Blocks more recognizable in source code

2017-09-06 Thread Stephane Ducasse
Hi Manuel This is coool. How linked to nautilus it is? Stef On Wed, Sep 6, 2017 at 1:52 PM, Manuel Leuenberger wrote: > Hi everyone, > > I built a little syntax highlighting extension for the Nautilus source > code pane, which puts a background color behind blocks, so that nested > blocks

[Pharo-users] BlockStyler: Make Blocks more recognizable in source code

2017-09-06 Thread Manuel Leuenberger
Hi everyone, I built a little syntax highlighting extension for the Nautilus source code pane, which puts a background color behind blocks, so that nested blocks are easily recognizable. Install with: Metacello new baseline: 'BlockStyler'; repository: 'github://maenu/BlockSty