mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-09 19:10:32 +00:00
parent
59ee2e0ab9
commit
5310c4ea38
6
mcolor
6
mcolor
@ -8,14 +8,18 @@ BEGIN { hdr = 1; if ("NO_COLOR" in ENVIRON || match(ENVIRON["TERM"], "^(dumb|net
|
||||
no_color { print; next }
|
||||
/\r$/ { sub(/\r$/, "") }
|
||||
/^\014$/ { nextmail = 1; print(fg(co("FF",232), $0)); next }
|
||||
/^$/ { hdr = 0 }
|
||||
/^$/ { hdr = 0; diff = 0 }
|
||||
/^-- $/ { ftr = 1 }
|
||||
/^diff -/ { diff = 1 }
|
||||
/^--- .* ---/ { print fg(co("SEP",242), $0); ftr = 0; sig = 0; next }
|
||||
/^-----BEGIN .* SIGNATURE-----/ { sig = 1 }
|
||||
nextmail && /^From:/ { hdr = 1 }
|
||||
hdr && /^From:/ { print so(fg(co("FROM",119), $0)); next }
|
||||
hdr { print fg(co("HEADER",120), $0); next }
|
||||
ftr { print fg(co("FOOTER",244), $0); next }
|
||||
diff && /^-/ { print fg(co("DIFF_D",160), $0); next }
|
||||
diff && /^\+/ { print fg(co("DIFF_I",40), $0); next }
|
||||
diff && /^@/ { print fg(co("DIFF_R",226), $0); next }
|
||||
/^-----BEGIN .* MESSAGE-----/ ||
|
||||
/^-----END .* SIGNATURE-----/ { print fg(co("SIG",244), $0); sig = 0; next }
|
||||
sig { print fg(co("SIG",244), $0); next }
|
||||
|
Loading…
Reference in New Issue
Block a user