2018-11-11 15:50:46 -08:00
|
|
|
#!/usr/bin/env nomsu -V4.10.12.7
|
2018-07-15 19:41:22 -07:00
|
|
|
#
|
|
|
|
This file defines actions for ANSI console color escape codes.
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-20 20:27:15 -07:00
|
|
|
test:
|
2018-11-08 15:23:22 -08:00
|
|
|
% = (bright "\(green)Color test passed.")
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-18 01:27:56 -07:00
|
|
|
%colors = {..}
|
2018-11-11 15:50:46 -08:00
|
|
|
normal: 0, "reset color": 0, bright: 1, bold: 1, dim: 2, italic: 3, underscore: 4
|
|
|
|
"slow blink": 5, "fast blink": 6, reverse: 7, inverse: 7, inverted: 7
|
|
|
|
hidden: 8, # There's some other codes, but they're not currently implemented
|
|
|
|
black: 30, red: 31, green: 32, yellow: 33, blue: 34, magenta: 35, cyan: 36
|
|
|
|
white: 37, "on black": 40, "on red": 41, "on green": 42, "on yellow": 43
|
|
|
|
"on blue": 44, "on magenta": 45, "on cyan": 46, "on white": 47
|
2018-06-23 18:04:11 -07:00
|
|
|
|
2018-07-17 23:37:20 -07:00
|
|
|
for %name = %colornum in %colors:
|
2018-09-18 17:41:36 -07:00
|
|
|
%colornum = "\%colornum"
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-11-02 14:38:24 -07:00
|
|
|
#(=lua "COMPILE_ACTIONS").%name = (..)
|
2018-11-09 14:36:15 -08:00
|
|
|
[%nomsu, %tree] -> (Lua "'\\027[\(%colornum)m'")
|
2018-11-08 15:23:22 -08:00
|
|
|
%compile.action.%name = (..)
|
2018-11-09 16:40:36 -08:00
|
|
|
[%nomsu, %text] ->:
|
2018-11-02 14:38:24 -07:00
|
|
|
if %text:
|
2018-11-09 14:36:15 -08:00
|
|
|
return (Lua "('\\027[\(%colornum)m'..\(%text as lua expr)..'\\027[0m')")
|
2018-11-11 15:50:46 -08:00
|
|
|
..else:
|
|
|
|
return (Lua "'\\027[\(%colornum)m'")
|