Ticket #3845 (new defect) — at Initial Version
replace brightblue in syntax files
Reported by: | Nicolas Rybkin | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | Future Releases |
Component: | mcedit | Version: | master |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Branch state: | no branch | Votes for changeset: |
Description
I can't see text printed in bright blue in tty (Slackware Linux, using default skin), I suggest to replace it in syntax files with bright cyan, it can be done with such script ran in syntax folder (skips filehighlight.syntax and syntax.syntax):
#! /bin/tcsh
set a = basename $0
foreach b (*)
if ($b != $a && $b != "filehighlight.syntax" && $b != "syntax.syntax") then
sed -i s/brightblue/brightcyan/ $b
endif
end
Note: See
TracTickets for help on using
tickets.