Apr 27, 2016 at 10:41 AM, Blondeau Vincent <
>> vincent.blond...@worldline.com> wrote:
>> >
>> > Hi,
>> >
>> >
>> >
>> > Termcap methods seems not implemented and used by the output driver
>> (see initialize).. Maybe you should implement them be
ment them before anything ?
> >
> >
> >
> > Vincent
> >
> >
> >
> > De : Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] De la
> part de Valentin Ryckewaert
> > Envoyé : mercredi 27 avril 2016 10:35
> > À : Any question about p
lists.pharo.org] De la part
de Valentin Ryckewaert
> Envoyé : mercredi 27 avril 2016 10:35
> À : Any question about pharo is welcome
> Objet : [Pharo-users] VTermOutPutDriver
>
>
>
> Hi everyone,
>
>
>
> i'm reading VTermOutPutDriver and I tried to use the
question about pharo is welcome
Objet : [Pharo-users] VTermOutPutDriver
Hi everyone,
i'm reading VTermOutPutDriver and I tried to use the example of the
documentation:
| out |
out := VTermOutputDriver stdout.
out << 'normal text'.
out lf.
Hi everyone,
i'm reading VTermOutPutDriver and I tried to use the example of the
documentation:
| out |
out := VTermOutputDriver stdout.
out << 'normal text'.
out lf.
'red text' do: [ :c | out color256: Color red. out << c ].
out lf.
'bold text' do: [ :c | out bold. out << c ].
out clear.
out lf.