Hi everyone,
i'm working on it and I don't know what to do about colors...
I can have methods like :
- backgroundBlue & writingBlue
- blueBackground & blueWriting (My choice)
- blue & backgroundBlue
- No methods like that and only backgroundColor: & writingColor:
What do you prefer?
2016-04-27 1
I found the problem, it's just that the dictionnary which make correspond
bold to the code needed didn't have the bold (and other stuffs I suppose)
I'm trying to fix this.
2016-04-27 12:20 GMT+02:00 p...@highoctane.be :
> Some code I have around:
>
>
> Tools class>>#inform: aString color: aSymbol
Some code I have around:
Tools class>>#inform: aString color: aSymbol
| out |
out := VTermOutputDriver stdout.
out perform: aSymbol.
DateAndTime now printHMSOn: out.
out
nextPutAll: ' : ';
nextPutAll: aString.
out lf.
Usage:
Tools inform: 'Blah' color: #red.
FYI VTermOutputDriver and frien
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-boun...@lists.pharo.org] De la part de
Valentin Ryckewaert
Envoyé : mercredi 27 avril 2016 10:35
À : Any que