Re: [Pharo-users] VTermOutPutDriver

2016-04-29 Thread Valentin Ryckewaert
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

Re: [Pharo-users] VTermOutPutDriver

2016-04-27 Thread Valentin Ryckewaert
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

Re: [Pharo-users] VTermOutPutDriver

2016-04-27 Thread p...@highoctane.be
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

Re: [Pharo-users] VTermOutPutDriver

2016-04-27 Thread Blondeau Vincent
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. 

[Pharo-users] VTermOutPutDriver

2016-04-27 Thread Valentin Ryckewaert
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.