Hi,
Termcap methods seems not implemented and used by the output driver (see initialize).. Maybe you should implement them before anything ?
Vincent
De : Pharo-users [mailto:pharo-users-bounces@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 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.
As I understood it
'bold text' do: [ :c | out bold. out << c ].
is the problem, the termcap 'md' looks like not existing but it exists : http://man7.org/linux/man-pages/man5/termcap.5.html
Should I send an issue for not working method or wrong doc ?