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 ?

Reply via email to