\ colorize.fs Coloured .NAME and WORDS 20may93jaw
\ Authors: Anton Ertl, Bernd Paysan, Neal Crook
\ Copyright (C) 1995,1996,1997,1999,2001,2003,2007,2014,2015 Free Software Foundation, Inc.
\ This file is part of Gforth.
\ Gforth is free software; you can redistribute it and/or
\ modify it under the terms of the GNU General Public License
\ as published by the Free Software Foundation, either version 3
\ of the License, or (at your option) any later version.
\ This program is distributed in the hope that it will be useful,
\ but WITHOUT ANY WARRANTY; without even the implied warranty of
\ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\ GNU General Public License for more details.
\ You should have received a copy of the GNU General Public License
\ along with this program. If not, see http://www.gnu.org/licenses/.
require ansi.fs
decimal
CREATE CT 30 cells allot
: CT! cells CT + ! ;
: CT@ cells CT + @ ;
VARIABLE Color 20 Color !
: Color: Color @ 1 Color +! constant ;
\ define colours for the different stuff that can be found in the
\ dictionary; see wordinfo.fs for the descriptions/definitions
Color: Hig#
bg Black >FG A> 0 CT!
bg Black >FG bold A> Ali# CT!
FG A> Con# CT!
FG A> Var# CT!
FG A> Def# CT!
FG A> Val# CT!
FG bold A> Doe# CT!
bg Cyan >FG A> Col# CT!
FG bold A> Pri# CT!
FG bold A> Str# CT!
FG bold A> Com# CT!
BG A> Hig# CT!
: (word-colorize) ( nfa -- nfa )
dup wordinfo cells ct + @ attr! ;
' (word-colorize) is word-colorize