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

> Hi,
>
> > Le 10 août 2016 à 14:11, Tudor Girba <[email protected]> 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).

Reply via email to