forked from forthy42/gforth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolorize.fs
53 lines (39 loc) · 1.67 KB
/
colorize.fs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
\ 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,2019 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#
<A white >bg Black >FG A> 0 CT!
<A white >bg Black >FG bold A> Ali# CT!
<A Magenta >FG A> Con# CT!
<A Green >FG A> Var# CT!
<A Blue >FG A> Def# CT!
<A Magenta >FG A> Val# CT!
<A Magenta >FG bold A> Doe# CT!
<A black >bg Cyan >FG A> Col# CT!
<A Blue >FG bold A> Pri# CT!
<A Red >FG bold A> Str# CT!
<A Green >FG bold A> Com# CT!
<A Red >BG A> Hig# CT!
: (word-colorize) ( nfa -- nfa )
dup wordinfo cells ct + @ attr! ;
' (word-colorize) is word-colorize