Login  Register

Re: request for improvements in GTInspector or debugger

Posted by Nicolai Hess-3-2 on Aug 11, 2016; 12:12pm
URL: https://forum.world.st/request-for-improvements-in-GTInspector-or-debugger-tp4910232p4910478.html



2016-08-11 13:44 GMT+02:00 Christophe Demarey <[hidden email]>:
Hi,

> Le 10 août 2016 à 14:11, Tudor Girba <[hidden email]> a écrit :
>
> Hi Stef,
>
> I agree with what you say in this mail, and I am not sure where this is not the case.


By example, it is not available in a String presentation of GTInspector. This one always forces me to go to the raw presentation and use the comment.
Would it be possible to use global shortcuts in String presentation (cmd+B, cmd+M, cmd+N, etc.)?

Christophe


You could change
GLMMorphicRubricTextRenderer>>#morph to act with smalltalk comment mode

morph
    ^ RubScrolledTextMorph new
        getSelectionSelector: #primarySelectionInterval;
        color: Smalltalk ui theme backgroundColor;
        textColor: Smalltalk ui theme  textColor;
        textFont: StandardFonts defaultFont;
        model: textModel;
        beForSmalltalkComment;
        yourself.


This way, it behaves like the comment pane in Nautilus, it renders the text as "text" with the default font, no menu, but allows the common code mode shortcuts
cmd+b cmd+M, ( and some that doesn't make sense for every selection, like cmd+i for inspect).